blob: 8ca514ceded9a5334e233e6533b478ff3645eb3c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
{
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;
};
})
|