flake: build tor alpha
All checks were successful
CI / ci (push) Successful in 4m9s

This commit is contained in:
Abel Luck 2025-06-06 08:58:37 +02:00
parent c26ebe7420
commit 0951242b32

View file

@ -30,9 +30,21 @@
);
in
{
overlays.default =
final: prev:
overlays.default = final: prev: {
tor = prev.tor.overrideAttrs (
old:
let
pname = "tor";
version = "0.4.9.2-alpha";
in
{
version = version;
src = prev.fetchurl {
url = "https://dist.torproject.org/${pname}-${version}.tar.gz";
hash = "sha256-uUJc92dwLXGISOiEdJjg1G8qJhuHp7Qk3BjSOZUxABo=";
};
}
);
};
devShells = forEachSupportedSystem (
@ -49,6 +61,7 @@
pkgs.obfs4
pkgs.gnumake
pkgs.opentofu
pkgs.tor
];
buildInputs = libraries;
inputsFrom = libraries;