mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 18:26:45 +01:00
05f2b05d72
Semi-automatic update. These checks were performed: - built on NixOS - found 2.0.0 with grep in /nix/store/llszhnm3pshnbmp7cra1bkal6njag3nn-unittest-cpp-2.0.0 - found 2.0.0 in filename of file in /nix/store/llszhnm3pshnbmp7cra1bkal6njag3nn-unittest-cpp-2.0.0 cc ""
28 lines
600 B
Nix
28 lines
600 B
Nix
{stdenv, fetchFromGitHub, cmake}:
|
|
|
|
with stdenv.lib;
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "unittest-cpp-${version}";
|
|
version = "2.0.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "unittest-cpp";
|
|
repo = "unittest-cpp";
|
|
rev = "v${version}";
|
|
sha256 = "0sxb3835nly1jxn071f59fwbdzmqi74j040r81fanxyw3s1azw0i";
|
|
};
|
|
|
|
buildInputs = [cmake];
|
|
|
|
doCheck = false;
|
|
|
|
meta = {
|
|
homepage = https://github.com/unittest-cpp/unittest-cpp;
|
|
description = "Lightweight unit testing framework for C++";
|
|
license = licenses.mit;
|
|
maintainers = [];
|
|
platforms = stdenv.lib.platforms.unix;
|
|
};
|
|
}
|