unittest-cpp: init at 1.6.1
This commit is contained in:
parent
f6529d9640
commit
800a379cb3
26
pkgs/development/libraries/unittest-cpp/default.nix
Normal file
26
pkgs/development/libraries/unittest-cpp/default.nix
Normal file
@ -0,0 +1,26 @@
|
|||||||
|
{stdenv, fetchFromGitHub, cmake}:
|
||||||
|
|
||||||
|
with stdenv.lib;
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
name = "unittest-cpp-${version}";
|
||||||
|
version = "1.6.1";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "unittest-cpp";
|
||||||
|
repo = "unittest-cpp";
|
||||||
|
rev = "v${version}";
|
||||||
|
sha256 = "1sva2bm90z4vmwwvp0af82f7p4sdq5j2jjqzhs2ppihdkggn62d1";
|
||||||
|
};
|
||||||
|
|
||||||
|
buildInputs = [cmake];
|
||||||
|
|
||||||
|
doCheck = false;
|
||||||
|
|
||||||
|
meta = {
|
||||||
|
homepage = "https://github.com/unittest-cpp/unittest-cpp";
|
||||||
|
description = "Lightweight unit testing framework for C++";
|
||||||
|
license = licenses.mit;
|
||||||
|
maintainers = [maintainers.tohl];
|
||||||
|
};
|
||||||
|
}
|
@ -3941,6 +3941,8 @@ in
|
|||||||
|
|
||||||
units = callPackage ../tools/misc/units { };
|
units = callPackage ../tools/misc/units { };
|
||||||
|
|
||||||
|
unittest-cpp = callPackage ../development/libraries/unittest-cpp { };
|
||||||
|
|
||||||
unrar = callPackage ../tools/archivers/unrar { };
|
unrar = callPackage ../tools/archivers/unrar { };
|
||||||
|
|
||||||
xar = callPackage ../tools/compression/xar { };
|
xar = callPackage ../tools/compression/xar { };
|
||||||
|
Loading…
Reference in New Issue
Block a user