tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
freenet: make patch urls reproducible
Peder Bergebakken Sundt
2 years ago
2376191f
17ed52d5
+2
-1
1 changed file
expand all
collapse all
unified
split
pkgs
applications
networking
p2p
freenet
default.nix
+2
-1
pkgs/applications/networking/p2p/freenet/default.nix
···
16
17
patches = [
18
# gradle 7 support
0
19
(fetchpatch {
20
-
url = "https://github.com/freenet/fred/pull/827.patch";
21
sha256 = "sha256-T1zymxRTADVhhwp2TyB+BC/J4gZsT/CUuMrT4COlpTY=";
22
})
23
];
···
16
17
patches = [
18
# gradle 7 support
19
+
# https://github.com/freenet/fred/pull/827
20
(fetchpatch {
21
+
url = "https://github.com/freenet/fred/commit/8991303493f2c0d9933f645337f0a7a5a979e70a.patch";
22
sha256 = "sha256-T1zymxRTADVhhwp2TyB+BC/J4gZsT/CUuMrT4COlpTY=";
23
})
24
];