summary refs log tree commit diff
path: root/pkgs/development/libraries/tk/8.4.16.nix
diff options
context:
space:
mode:
authorLluís Batlle i Rossell <viric@vicerveza.homeunix.net>2009-11-19 19:09:10 +0000
committerLluís Batlle i Rossell <viric@vicerveza.homeunix.net>2009-11-19 19:09:10 +0000
commite85500987b7df503b37a127a5ea49a07f92e70f0 (patch)
tree5f66b5de9aadaf0ff3ba52c394dc0066114e11e2 /pkgs/development/libraries/tk/8.4.16.nix
parent7ade207f6b75da0fde94cec621ac6d8fa6c3e586 (diff)
parent58f543f19f1a2eed8a46202b36a855836cfc9e0f (diff)
downloadnixlib-e85500987b7df503b37a127a5ea49a07f92e70f0.tar
nixlib-e85500987b7df503b37a127a5ea49a07f92e70f0.tar.gz
nixlib-e85500987b7df503b37a127a5ea49a07f92e70f0.tar.bz2
nixlib-e85500987b7df503b37a127a5ea49a07f92e70f0.tar.lz
nixlib-e85500987b7df503b37a127a5ea49a07f92e70f0.tar.xz
nixlib-e85500987b7df503b37a127a5ea49a07f92e70f0.tar.zst
nixlib-e85500987b7df503b37a127a5ea49a07f92e70f0.zip
Merging from trunk. I had to do two manual merges, quite trivial I think.
svn path=/nixpkgs/branches/stdenv-updates/; revision=18472
Diffstat (limited to 'pkgs/development/libraries/tk/8.4.16.nix')
-rw-r--r--pkgs/development/libraries/tk/8.4.16.nix18
1 files changed, 0 insertions, 18 deletions
diff --git a/pkgs/development/libraries/tk/8.4.16.nix b/pkgs/development/libraries/tk/8.4.16.nix
deleted file mode 100644
index 38b7ec857495..000000000000
--- a/pkgs/development/libraries/tk/8.4.16.nix
+++ /dev/null
@@ -1,18 +0,0 @@
-args: with args;
-
-stdenv.mkDerivation {
-  name = "tk-${version}";
-  src = fetchurl {
-    url = "mirror://sourceforge/tcl/tk${version}-src.tar.gz";
-    sha256 = "0cciavzd05bpm5yfppid0s0vsf8kabwia9620vgvi26sv1gjgwhb";
-  };
-  postInstall = ''
-    echo -e '#! /bin/sh \n $( readlink -f $( type -tP wish${builtins.substring 0 3 version}) ) "$@"' >$out/bin/wish
-    chmod a+x $out/bin/wish
-  ''; 
-  configureFlags="--with-tcl=${tcl}/lib";
-  preConfigure = "cd unix";
-
-  buildInputs = [tcl x11];
-  inherit tcl;
-}