nixpkgs/pkgs/development/libraries/tcllib/default.nix
Silvan Mosberger f5fa5fa4d6 pkgs: refactor needless quoting of homepage meta attribute (#27809)
* pkgs: refactor needless quoting of homepage meta attribute

A lot of packages are needlessly quoting the homepage meta attribute
(about 1400, 22%), this commit refactors all of those instances.

* pkgs: Fixing some links that were wrongfully unquoted in the previous
commit

* Fixed some instances
2017-08-01 22:03:30 +02:00

25 lines
577 B
Nix

{ stdenv, fetchurl, tcl }:
stdenv.mkDerivation rec {
name = "tcllib-${version}";
version = "1.15";
src = fetchurl {
url = "mirror://sourceforge/tcllib/tcllib-${version}.tar.gz";
sha256 = "1zdzaqdpxljsaabgknq3paakgs262qy255ib4p329knsv608jc3d";
};
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;
};
}