69285b5f13
Semi-automatic update. These checks were performed: - built on NixOS - found 1.19 with grep in /nix/store/6125kc5ryhd9vxwf6j7bbdv57ajsi2hs-tcllib-1.19
25 lines
577 B
Nix
25 lines
577 B
Nix
{ stdenv, fetchurl, tcl }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "tcllib-${version}";
|
|
version = "1.19";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/tcllib/tcllib-${version}.tar.gz";
|
|
sha256 = "173abxaazdmf210v651708ab6h7xhskvd52krxk6ifam337qgzh1";
|
|
};
|
|
|
|
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;
|
|
platforms = stdenv.lib.platforms.unix;
|
|
};
|
|
}
|