6b61249106
this shouldn't create any rebuilds
24 lines
575 B
Nix
24 lines
575 B
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchurl,
|
|
}:
|
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "cpptest";
|
|
version = "2.0.0";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/project/cpptest/cpptest/cpptest-${finalAttrs.version}/cpptest-${finalAttrs.version}.tar.gz";
|
|
sha256 = "0lpy3f2fjx1srh02myanlp6zfi497whlldcrnij39ghfhm0arcnm";
|
|
};
|
|
|
|
meta = {
|
|
homepage = "http://cpptest.sourceforge.net/";
|
|
description = "Simple C++ unit testing framework";
|
|
maintainers = with lib.maintainers; [ bosu ];
|
|
license = lib.licenses.lgpl3;
|
|
platforms = lib.platforms.all;
|
|
};
|
|
})
|