This commit is contained in:
parent
c26ebe7420
commit
0951242b32
1 changed files with 17 additions and 4 deletions
21
flake.nix
21
flake.nix
|
@ -30,10 +30,22 @@
|
||||||
);
|
);
|
||||||
in
|
in
|
||||||
{
|
{
|
||||||
overlays.default =
|
overlays.default = final: prev: {
|
||||||
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 (
|
devShells = forEachSupportedSystem (
|
||||||
{ pkgs, pkgs-mine }:
|
{ pkgs, pkgs-mine }:
|
||||||
|
@ -49,6 +61,7 @@
|
||||||
pkgs.obfs4
|
pkgs.obfs4
|
||||||
pkgs.gnumake
|
pkgs.gnumake
|
||||||
pkgs.opentofu
|
pkgs.opentofu
|
||||||
|
pkgs.tor
|
||||||
];
|
];
|
||||||
buildInputs = libraries;
|
buildInputs = libraries;
|
||||||
inputsFrom = libraries;
|
inputsFrom = libraries;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue