Skip to content

Commit

Permalink
unittest-cpp: init at 1.6.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Tomas Hlavaty committed Jul 17, 2016
1 parent f6529d9 commit 800a379
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 0 deletions.
26 changes: 26 additions & 0 deletions pkgs/development/libraries/unittest-cpp/default.nix
Original file line number Diff line number Diff line change
@@ -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];
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -3941,6 +3941,8 @@ in

units = callPackage ../tools/misc/units { };

unittest-cpp = callPackage ../development/libraries/unittest-cpp { };

unrar = callPackage ../tools/archivers/unrar { };

xar = callPackage ../tools/compression/xar { };
Expand Down

0 comments on commit 800a379

Please sign in to comment.