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

20 lines
508 B
Nix
Raw Normal View History

{ lib, fetchurl, tcl }:
2012-06-04 18:07:58 +00:00
tcl.mkTclDerivation rec {
pname = "tcllib";
2022-10-04 08:55:53 +00:00
version = "1.21";
2012-06-04 18:07:58 +00:00
src = fetchurl {
url = "mirror://sourceforge/tcllib/tcllib-${version}.tar.gz";
2022-10-04 08:55:53 +00:00
sha256 = "sha256-RrK7XsgEk2OuAWRa8RvaO9tdsQYp6AfYHRrUbNG+rVA=";
2012-06-04 18:07:58 +00:00
};
meta = {
2022-10-04 08:55:53 +00:00
homepage = "https://core.tcl-lang.org/tcllib/";
description = "Tcl-only library of standard routines for Tcl";
license = lib.licenses.tcltk;
platforms = lib.platforms.unix;
2022-10-04 08:56:34 +00:00
maintainers = with lib.maintainers; [ fgaz ];
};
2012-06-04 18:07:58 +00:00
}