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

26 lines
647 B
Nix
Raw Normal View History

{ stdenv, fetchFromGitHub, cmake }:
2018-11-10 02:26:34 +00:00
stdenv.mkDerivation rec {
name = "catch2-${version}";
version = "2.8.0";
2018-11-10 02:26:34 +00:00
src = fetchFromGitHub {
owner = "catchorg";
repo = "Catch2";
rev = "v${version}";
sha256="1i7nz29gcsy9cnljb0sb1fw8fg9p1gdh2pdhrgj3kcrsnxgbyhrq";
2018-11-10 02:26:34 +00:00
};
nativeBuildInputs = [ cmake ];
cmakeFlags = [ "-H.." ];
2018-11-10 02:26:34 +00: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;
maintainers = with maintainers; [ edwtjo knedlsepp ];
platforms = with platforms; unix;
};
}