tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
tcl.tclPackageHook: fix cross
Alyssa Ross
4 years ago
32047523
686a131c
+3
-3
1 changed file
expand all
collapse all
unified
split
pkgs
development
interpreters
tcl
generic.nix
+3
-3
pkgs/development/interpreters/tcl/generic.nix
···
1
1
-
{ lib, stdenv, callPackage, makeSetupHook, makeWrapper
1
1
+
{ lib, stdenv, callPackage, makeSetupHook
2
2
3
3
# Version specific stuff
4
4
, release, version, src
···
51
51
inherit release version;
52
52
libPrefix = "tcl${release}";
53
53
libdir = "lib/${libPrefix}";
54
54
-
tclPackageHook = callPackage ({}: makeSetupHook {
54
54
+
tclPackageHook = callPackage ({ buildPackages }: makeSetupHook {
55
55
name = "tcl-package-hook";
56
56
-
deps = [ makeWrapper ];
56
56
+
deps = [ buildPackages.makeWrapper ];
57
57
} ./tcl-package-hook.sh) {};
58
58
};
59
59
};