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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

26 lines
656 B
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub, cmake }:
2018-11-10 02:26:34 +00:00
stdenv.mkDerivation rec {
pname = "catch2";
2022-10-17 12:34:54 +00:00
version = "2.13.10";
2018-11-10 02:26:34 +00:00
src = fetchFromGitHub {
owner = "catchorg";
repo = "Catch2";
rev = "v${version}";
2022-10-17 12:34:54 +00:00
sha256="sha256-XnT2ziES94Y4uzWmaxSw7nWegJFQjAqFUG8PkwK5nLU=";
2018-11-10 02:26:34 +00:00
};
nativeBuildInputs = [ cmake ];
cmakeFlags = [ "-H.." ];
2018-11-10 02:26:34 +00:00
meta = with lib; {
2018-11-10 02:26:34 +00:00
description = "A multi-paradigm automated test framework for C++ and Objective-C (and, maybe, C)";
homepage = "http://catch-lib.net";
2018-11-10 02:26:34 +00:00
license = licenses.boost;
maintainers = with maintainers; [ edwtjo knedlsepp ];
2022-06-30 13:35:48 +00:00
platforms = platforms.unix ++ [ "x86_64-windows" ];
2018-11-10 02:26:34 +00:00
};
}