0
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-07-13 21:50:33 +03:00

unittest-cpp: init at 1.6.1

(cherry picked from commit 800a379cb3)
This commit is contained in:
Tomas Hlavaty 2016-07-17 17:20:23 +02:00 committed by Rob Vermaas
parent 3727911b46
commit cc7c261731
No known key found for this signature in database
GPG key ID: E114A5F264A8AE8E
2 changed files with 28 additions and 0 deletions

View 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];
};
}

View file

@ -3469,6 +3469,8 @@ let
units = callPackage ../tools/misc/units { };
unittest-cpp = callPackage ../development/libraries/unittest-cpp { };
unrar = callPackage ../tools/archivers/unrar { };
xar = callPackage ../tools/compression/xar { };