tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
recon-ng: use replaceVars instead of substituteAll
Wolfgang Walther
10 months ago
91e5816a
80f84739
+2
-3
1 changed file
expand all
collapse all
unified
split
pkgs
by-name
re
recon-ng
package.nix
+2
-3
pkgs/by-name/re/recon-ng/package.nix
···
2
2
lib,
3
3
fetchFromGitHub,
4
4
python3,
5
5
-
substituteAll,
5
5
+
replaceVars,
6
6
fetchpatch,
7
7
}:
8
8
python3.pkgs.buildPythonApplication rec {
···
49
49
50
50
postPatch =
51
51
let
52
52
-
setup = substituteAll {
53
53
-
src = ./setup.py;
52
52
+
setup = replaceVars ./setup.py {
54
53
inherit pname version;
55
54
};
56
55
in