1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

catch: 1.7.0 -> 1.9.5

This commit is contained in:
romildo 2017-06-17 12:21:50 -03:00
parent 0b7c4c1900
commit 7049e7a16c

View file

@ -3,16 +3,16 @@
stdenv.mkDerivation rec {
name = "catch-${version}";
version = "1.7.0";
version = "1.9.5";
src = fetchFromGitHub {
owner = "philsquared";
repo = "Catch";
rev = "v." + version;
sha256 = "0harki6irc4mqipjc24zyy0jimidr5ng3ss29bnpzbbwhrnkyrgm";
rev = "v${version}";
sha256 = "1in4f6w1pja8m1hvyiwx7s7gxnj6nlj1fgxw9blldffh09ikgpm2";
};
buildInputs = [ cmake ];
nativeBuildInputs = [ cmake ];
cmakeFlags = [ "-DUSE_CPP14=ON" ];
doCheck = true;