1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-19 03:48:57 +00:00
nixpkgs/pkgs/development/libraries/catch/default.nix

38 lines
847 B
Nix
Raw Normal View History

2015-05-25 09:38:42 +01:00
{ stdenv, lib, cmake, fetchFromGitHub }:
stdenv.mkDerivation rec {
name = "catch-${version}";
2016-04-27 14:37:15 +01:00
version = "1.5.0";
2015-05-25 09:38:42 +01:00
src = fetchFromGitHub {
owner = "philsquared";
repo = "Catch";
2015-08-26 11:59:57 +01:00
rev = "v" + version;
2016-04-27 14:37:15 +01:00
sha256 = "1ag8siafg7fmb50qdqznryrg3lvv56f09nvqwqqn2rlk83zjnaw0";
2015-05-25 09:38:42 +01:00
};
buildInputs = [ cmake ];
dontUseCmakeConfigure = true;
buildPhase = ''
2016-04-27 14:37:15 +01:00
cmake -Hprojects/CMake -BBuild -DCMAKE_BUILD_TYPE=Release -DUSE_CPP11=ON
2015-05-25 09:38:42 +01:00
cd Build
make
cd ..
'';
installPhase = ''
mkdir -p $out
mv include $out/.
'';
meta = with stdenv.lib; {
description = "A multi-paradigm automated test framework for C++ and Objective-C (and, maybe, C)";
homepage = "http://catch-lib.net";
license = licenses.boost;
maintainers = with maintainers; [ edwtjo ];
platforms = with platforms; unix;
2015-05-25 09:38:42 +01:00
};
}