8904ce343a
These have changed following commit
c3255fe8ec
.
See also:
- https://github.com/NixOS/nixpkgs/pull/31004
- https://github.com/NixOS/nixpkgs/pull/31106
29 lines
625 B
Nix
29 lines
625 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";
|
|
};
|
|
|
|
setSourceRoot = ''
|
|
sourceRoot=$(echo */python)
|
|
'';
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = http://cxxtest.com;
|
|
description = "Unit testing framework for C++";
|
|
platforms = platforms.unix ;
|
|
license = licenses.lgpl3;
|
|
maintainers = [ maintainers.juliendehos ];
|
|
};
|
|
}
|
|
|