catch: 1.7.0 -> 1.9.5
This commit is contained in:
parent
0b7c4c1900
commit
7049e7a16c
1 changed files with 4 additions and 4 deletions
|
@ -3,16 +3,16 @@
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
|
|
||||||
name = "catch-${version}";
|
name = "catch-${version}";
|
||||||
version = "1.7.0";
|
version = "1.9.5";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "philsquared";
|
owner = "philsquared";
|
||||||
repo = "Catch";
|
repo = "Catch";
|
||||||
rev = "v." + version;
|
rev = "v${version}";
|
||||||
sha256 = "0harki6irc4mqipjc24zyy0jimidr5ng3ss29bnpzbbwhrnkyrgm";
|
sha256 = "1in4f6w1pja8m1hvyiwx7s7gxnj6nlj1fgxw9blldffh09ikgpm2";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [ cmake ];
|
nativeBuildInputs = [ cmake ];
|
||||||
cmakeFlags = [ "-DUSE_CPP14=ON" ];
|
cmakeFlags = [ "-DUSE_CPP14=ON" ];
|
||||||
|
|
||||||
doCheck = true;
|
doCheck = true;
|
||||||
|
|
Loading…
Reference in a new issue