mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-24 07:53:19 +00:00
catch2: init at 2.4.2
This commit is contained in:
parent
30422aa7d0
commit
7759fe1f22
27
pkgs/development/libraries/catch2/default.nix
Normal file
27
pkgs/development/libraries/catch2/default.nix
Normal file
@ -0,0 +1,27 @@
|
|||||||
|
{ stdenv, fetchFromGitHub, cmake, python }:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
name = "catch2-${version}";
|
||||||
|
version = "2.4.2";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "catchorg";
|
||||||
|
repo = "Catch2";
|
||||||
|
rev = "v${version}";
|
||||||
|
sha256="1105bxbvh1xxl4yxjjp6l6w6hgsh8xbdiwlnga9di5y2x92b9bjd";
|
||||||
|
};
|
||||||
|
|
||||||
|
nativeBuildInputs = [ cmake ];
|
||||||
|
|
||||||
|
cmakeFlags = [
|
||||||
|
"-H.."
|
||||||
|
"-DBUILD_TESTING=OFF"];
|
||||||
|
|
||||||
|
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;
|
||||||
|
};
|
||||||
|
}
|
@ -1108,6 +1108,8 @@ with pkgs;
|
|||||||
|
|
||||||
catch = callPackage ../development/libraries/catch { };
|
catch = callPackage ../development/libraries/catch { };
|
||||||
|
|
||||||
|
catch2 = callPackage ../development/libraries/catch2 { };
|
||||||
|
|
||||||
catdoc = callPackage ../tools/text/catdoc { };
|
catdoc = callPackage ../tools/text/catdoc { };
|
||||||
|
|
||||||
catdocx = callPackage ../tools/text/catdocx { };
|
catdocx = callPackage ../tools/text/catdocx { };
|
||||||
|
Loading…
Reference in New Issue
Block a user