From 6c0404730f6470932493d59530f396a53c3a0e75 Mon Sep 17 00:00:00 2001 From: knedlsepp Date: Wed, 27 Apr 2016 13:37:15 +0000 Subject: catch: 1.2.1 -> 1.5.0 --- pkgs/development/libraries/catch/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/development/libraries/catch/default.nix b/pkgs/development/libraries/catch/default.nix index 625ec2995e345..3ab520fd4a6b0 100644 --- a/pkgs/development/libraries/catch/default.nix +++ b/pkgs/development/libraries/catch/default.nix @@ -3,20 +3,20 @@ stdenv.mkDerivation rec { name = "catch-${version}"; - version = "1.2.1"; + version = "1.5.0"; src = fetchFromGitHub { owner = "philsquared"; repo = "Catch"; rev = "v" + version; - sha256 = "0rz2nmvvh66x6w2nb7l08vc5x9aqg1qfz2qfiykaz1ybc19fwck2"; + sha256 = "1ag8siafg7fmb50qdqznryrg3lvv56f09nvqwqqn2rlk83zjnaw0"; }; buildInputs = [ cmake ]; dontUseCmakeConfigure = true; buildPhase = '' - cmake -Hprojects/CMake -BBuild -DCMAKE_BUILD_TYPE=Release + cmake -Hprojects/CMake -BBuild -DCMAKE_BUILD_TYPE=Release -DUSE_CPP11=ON cd Build make cd .. -- cgit 1.4.1