mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 07:01:54 +00:00
1ca55953fc
Signed-off-by: aszlig <aszlig@redmoonstudios.org>
24 lines
536 B
Nix
24 lines
536 B
Nix
{ stdenv, fetchurl, tcl }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "tcllib-${version}";
|
|
version = "1.14";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/tcllib/tcllib-${version}.tar.gz";
|
|
sha256 = "11052fgfmv9vyswzjjgfvh3pi0k3fnfnl9ri6nl4vc6f6z5ry56x";
|
|
};
|
|
|
|
passthru = {
|
|
libPrefix = "tcllib${version}";
|
|
};
|
|
|
|
buildInputs = [ tcl ];
|
|
|
|
meta = {
|
|
homepage = "http://tcl.activestate.com/software/tcllib/";
|
|
description = "Tcl-only library of standard routines for Tcl";
|
|
license = stdenv.lib.licenses.tcltk;
|
|
};
|
|
}
|