nixpkgs/pkgs/development/libraries/catch/default.nix

29 lines
705 B
Nix
Raw Normal View History

2017-02-02 20:47:01 +01:00
{ stdenv, cmake, fetchFromGitHub }:
2015-05-25 10:38:42 +02:00
stdenv.mkDerivation rec {
name = "catch-${version}";
2017-06-17 17:21:50 +02:00
version = "1.9.5";
2015-05-25 10:38:42 +02:00
src = fetchFromGitHub {
owner = "philsquared";
repo = "Catch";
2017-06-17 17:21:50 +02:00
rev = "v${version}";
sha256 = "1in4f6w1pja8m1hvyiwx7s7gxnj6nlj1fgxw9blldffh09ikgpm2";
2015-05-25 10:38:42 +02:00
};
2017-06-17 17:21:50 +02:00
nativeBuildInputs = [ cmake ];
2017-02-02 20:47:01 +01:00
cmakeFlags = [ "-DUSE_CPP14=ON" ];
2015-05-25 10:38:42 +02:00
2017-02-02 20:47:01 +01:00
doCheck = true;
checkTarget = "test";
2015-05-25 10:38:42 +02:00
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;
2017-02-02 20:47:01 +01:00
maintainers = with maintainers; [ edwtjo knedlsepp ];
platforms = with platforms; unix;
2015-05-25 10:38:42 +02:00
};
}