nixpkgs/pkgs/development/libraries/unittest-cpp/default.nix
Ryan Mulligan 05f2b05d72 unittest-cpp: 1.6.1 -> 2.0.0
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 ""
2018-02-28 12:18:49 +01:00

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