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

19 lines
466 B
Nix
Raw Normal View History

{ lib, fetchurl, tcl }:
2012-06-04 18:07:58 +00:00
tcl.mkTclDerivation 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
};
meta = {
homepage = "https://sourceforge.net/projects/tcllib/";
description = "Tcl-only library of standard routines for Tcl";
license = lib.licenses.tcltk;
platforms = lib.platforms.unix;
};
2012-06-04 18:07:58 +00:00
}