Merge pull request #17021 from KoviRobi/tclx-add-at-8.4

tclx: init at 8.4.1
This commit is contained in:
Daiderd Jordan 2016-07-20 23:41:54 +02:00 committed by GitHub
commit 267606eeba
2 changed files with 29 additions and 0 deletions

View file

@ -0,0 +1,27 @@
{ stdenv, fetchurl, tcl }:
stdenv.mkDerivation rec {
name = "tclx-${version}.${patch}";
version = "8.4";
patch = "1";
src = fetchurl {
url = "mirror://sourceforge/tclx/tclx${version}.${patch}.tar.bz2";
sha256 = "1v2qwzzidz0is58fd1p7wfdbscxm3ip2wlbqkj5jdhf6drh1zd59";
};
passthru = {
libPrefix = ""; # Using tclx${version} did not work
};
buildInputs = [ tcl ];
configureFlags = [ "--with-tcl=${tcl}/lib" "--exec-prefix=\${prefix}" ];
meta = {
homepage = http://tclx.sourceforge.net/;
description = "Tcl extensions";
license = stdenv.lib.licenses.tcltk;
maintainers = with stdenv.lib.maintainers; [ kovirobi ];
};
}

View file

@ -9382,6 +9382,8 @@ in
tcltls = callPackage ../development/libraries/tcltls { };
tclx = callPackage ../development/libraries/tclx { };
ntdb = callPackage ../development/libraries/ntdb {
python = python2;
};