7f5b839524
`selectVersion ./foo "bar"' instead of `import ./foo/bar.nix'. * Replaced `with args' with formal function arguments in several packages. * Renamed several files to `default.nix'. As a general rule, version numbers should only be included in the filename when there is a reason to keep multiple versions of a package in Nixpkgs. Otherwise, it just makes it harder to update the package. svn path=/nixpkgs/trunk/; revision=18403
23 lines
422 B
Nix
23 lines
422 B
Nix
{ stdenv, fetchurl, tcl, x11 }:
|
|
|
|
stdenv.mkDerivation {
|
|
name = "tk-8.5.7";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/tcl/tk8.5.7-src.tar.gz";
|
|
sha256 = "0c5gsy3nlwl0wn9swz4k4v7phy7nzjl317gca1jykgf4jz9nwdnr";
|
|
};
|
|
|
|
postInstall = ''
|
|
ln -s $out/bin/wish* $out/bin/wish
|
|
'';
|
|
|
|
configureFlags = "--with-tcl=${tcl}/lib";
|
|
|
|
preConfigure = "cd unix";
|
|
|
|
buildInputs = [tcl x11];
|
|
|
|
inherit tcl;
|
|
}
|