summaryrefslogtreecommitdiffstats
path: root/pkgs/development/libraries/tk/8.6.nix
diff options
context:
space:
mode:
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 ];
+
+})
+