about summary refs log tree commit diff
path: root/pkgs/development/libraries/tk/8.6.nix
diff options
context:
space:
mode:
authorLuca Bruno <lethalman88@gmail.com>2015-06-19 15:54:35 +0200
committerLuca Bruno <lethalman88@gmail.com>2015-06-19 16:06:10 +0200
commit6551af69eb9b1865d2797712aeea25b174a738fd (patch)
tree48f21bbd33d31933b7e8f30c9156025eeaa4ae65 /pkgs/development/libraries/tk/8.6.nix
parentffb70f9c51b35bf7a66f5daa20345bad7b97f4c1 (diff)
downloadnixlib-6551af69eb9b1865d2797712aeea25b174a738fd.tar
nixlib-6551af69eb9b1865d2797712aeea25b174a738fd.tar.gz
nixlib-6551af69eb9b1865d2797712aeea25b174a738fd.tar.bz2
nixlib-6551af69eb9b1865d2797712aeea25b174a738fd.tar.lz
nixlib-6551af69eb9b1865d2797712aeea25b174a738fd.tar.xz
nixlib-6551af69eb9b1865d2797712aeea25b174a738fd.tar.zst
nixlib-6551af69eb9b1865d2797712aeea25b174a738fd.zip
add tk-8_5 and fix xconq (XHF)
Diffstat (limited to 'pkgs/development/libraries/tk/8.6.nix')
-rw-r--r--pkgs/development/libraries/tk/8.6.nix13
1 files changed, 13 insertions, 0 deletions
diff --git a/pkgs/development/libraries/tk/8.6.nix b/pkgs/development/libraries/tk/8.6.nix
new file mode 100644
index 000000000000..110151227bdd
--- /dev/null
+++ b/pkgs/development/libraries/tk/8.6.nix
@@ -0,0 +1,13 @@
+{ callPackage, fetchurl, tcl, ... } @ args:
+
+callPackage ./generic.nix (args // rec {
+
+  src = fetchurl {
+    url = "mirror://sourceforge/tcl/tk${tcl.version}-src.tar.gz";
+    sha256 = "1h96vp15zl5xz0d4qp6wjyrchqmrmdm3q5k22wkw9jaxbvw9vy88";
+  };
+
+  patches = [ ./different-prefix-with-tcl.patch ];
+
+})
+