nixpkgs/pkgs/development/libraries/tcllib/default.nix
Ryan Mulligan 69285b5f13 tcllib: 1.18 -> 1.19
Semi-automatic update. These checks were performed:

- built on NixOS
- found 1.19 with grep in /nix/store/6125kc5ryhd9vxwf6j7bbdv57ajsi2hs-tcllib-1.19
2018-02-28 14:30:27 +00:00

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;
};
}