about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/libraries/tcllib/default.nix
blob: cd087045a8a318243ace0defbcb3b598946f37a0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{ lib, fetchurl, tcl }:

tcl.mkTclDerivation rec {
  pname = "tcllib";
  version = "1.21";

  src = fetchurl {
    url = "mirror://sourceforge/tcllib/tcllib-${version}.tar.gz";
    sha256 = "sha256-RrK7XsgEk2OuAWRa8RvaO9tdsQYp6AfYHRrUbNG+rVA=";
  };

  meta = {
    homepage = "https://core.tcl-lang.org/tcllib/";
    description = "Tcl-only library of standard routines for Tcl";
    license = lib.licenses.tcltk;
    platforms = lib.platforms.unix;
    maintainers = with lib.maintainers; [ fgaz ];
  };
}