f5fa5fa4d6
* 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
22 lines
577 B
Nix
22 lines
577 B
Nix
{ stdenv, fetchurl }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
version = "2.2.1";
|
|
name = "cxxtools";
|
|
|
|
src = fetchurl {
|
|
url = "http://www.tntnet.org/download/${name}-${version}.tar.gz";
|
|
sha256 = "0hp3qkyhidxkdf8qgkwrnqq5bpahink55mf0yz23rjd7rpbbdswc";
|
|
};
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
meta = {
|
|
homepage = http://www.tntnet.org/cxxtools.html;
|
|
description = "Comprehensive C++ class library for Unix and Linux";
|
|
platforms = stdenv.lib.platforms.linux ;
|
|
license = stdenv.lib.licenses.lgpl21;
|
|
maintainers = [ stdenv.lib.maintainers.juliendehos ];
|
|
};
|
|
}
|