0
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-07-13 21:50:33 +03:00

pass the right values for tk. Spotted on NixOS ;)

svn path=/nixpkgs/trunk/; revision=5874
This commit is contained in:
Armijn Hemel 2006-07-22 11:42:53 +00:00
parent d034a7ec00
commit ecae366a77
2 changed files with 2 additions and 2 deletions

View file

@ -1,5 +1,5 @@
source $stdenv/setup source $stdenv/setup
configureFlags="--with-tcl=$tcl/lib" configureFlags="--with-tcl=$tcl/lib --with-tk=$tk/lib"
genericBuild genericBuild

View file

@ -8,6 +8,6 @@ stdenv.mkDerivation {
md5 = "1b90fdbb0a51c7646f4d2e6b22f18711"; md5 = "1b90fdbb0a51c7646f4d2e6b22f18711";
}; };
inherit tcl; inherit tcl tk;
buildInputs = [which tcl tk x11]; buildInputs = [which tcl tk x11];
} }