tclx: init at 8.4.1

+29
+27
pkgs/development/libraries/tclx/default.nix
···
··· 1 + { stdenv, fetchurl, tcl }: 2 + 3 + stdenv.mkDerivation rec { 4 + name = "tclx-${version}.${patch}"; 5 + version = "8.4"; 6 + patch = "1"; 7 + 8 + src = fetchurl { 9 + url = "mirror://sourceforge/tclx/tclx${version}.${patch}.tar.bz2"; 10 + sha256 = "1v2qwzzidz0is58fd1p7wfdbscxm3ip2wlbqkj5jdhf6drh1zd59"; 11 + }; 12 + 13 + passthru = { 14 + libPrefix = ""; # Using tclx${version} did not work 15 + }; 16 + 17 + buildInputs = [ tcl ]; 18 + 19 + configureFlags = [ "--with-tcl=${tcl}/lib" "--exec-prefix=\${prefix}" ]; 20 + 21 + meta = { 22 + homepage = http://tclx.sourceforge.net/; 23 + description = "Tcl extensions"; 24 + license = stdenv.lib.licenses.tcltk; 25 + maintainers = with stdenv.lib.maintainers; [ kovirobi ]; 26 + }; 27 + }
+2
pkgs/top-level/all-packages.nix
··· 9227 9228 tcltls = callPackage ../development/libraries/tcltls { }; 9229 9230 ntdb = callPackage ../development/libraries/ntdb { 9231 python = python2; 9232 };
··· 9227 9228 tcltls = callPackage ../development/libraries/tcltls { }; 9229 9230 + tclx = callPackage ../development/libraries/tclx { }; 9231 + 9232 ntdb = callPackage ../development/libraries/ntdb { 9233 python = python2; 9234 };