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
27 lines
603 B
Nix
27 lines
603 B
Nix
{ stdenv, fetchFromGitHub, python2Packages}:
|
|
|
|
let
|
|
pname = "cxxtest";
|
|
version = "4.4";
|
|
in python2Packages.buildPythonApplication rec {
|
|
name = "${pname}-${version}";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "CxxTest";
|
|
repo = pname;
|
|
rev = version;
|
|
sha256 = "19w92kipfhp5wvs47l0qpibn3x49sbmvkk91yxw6nwk6fafcdl17";
|
|
};
|
|
|
|
sourceRoot = "${name}-src/python";
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = http://cxxtest.com;
|
|
description = "Unit testing framework for C++";
|
|
platforms = platforms.unix ;
|
|
license = licenses.lgpl3;
|
|
maintainers = [ maintainers.juliendehos ];
|
|
};
|
|
}
|
|
|