nixpkgs/pkgs/development/libraries/tcllib/default.nix

25 lines
566 B
Nix
Raw Normal View History

2012-06-04 18:07:58 +00:00
{ stdenv, fetchurl, tcl }:
stdenv.mkDerivation rec {
pname = "tcllib";
2019-12-14 16:56:49 +00:00
version = "1.20";
2012-06-04 18:07:58 +00:00
src = fetchurl {
url = "mirror://sourceforge/tcllib/tcllib-${version}.tar.gz";
2019-12-14 16:56:49 +00:00
sha256 = "0wax281h6ksz974a5qpfgf9y34lmlpd8i87lkm1w94ybbd3rgc73";
2012-06-04 18:07:58 +00:00
};
passthru = {
libPrefix = "tcllib${version}";
};
buildInputs = [ tcl ];
meta = {
homepage = "https://sourceforge.net/projects/tcllib/";
description = "Tcl-only library of standard routines for Tcl";
license = stdenv.lib.licenses.tcltk;
platforms = stdenv.lib.platforms.unix;
};
2012-06-04 18:07:58 +00:00
}