mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-07-13 21:50:33 +03:00
parent
3727911b46
commit
cc7c261731
2 changed files with 28 additions and 0 deletions
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];
|
||||||
|
};
|
||||||
|
}
|
|
@ -3469,6 +3469,8 @@ let
|
||||||
|
|
||||||
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…
Add table
Add a link
Reference in a new issue