base16-schemes: unstable-2024-06-21 -> unstable-2024-11-12
[NixPkgs.git] / pkgs / by-name / ve / verdict / package.nix
blob5083d6a793fb809d7642b55166ce0905ae6800f0
1 { lib
2 , stdenv
3 , fetchFromGitHub
4 , cmake
5 , gtest
6 }:
8 stdenv.mkDerivation (finalAttrs: {
9   pname = "verdict";
10   version = "1.4.2";
12   src = fetchFromGitHub {
13     owner = "sandialabs";
14     repo = "verdict";
15     rev = "refs/tags/${finalAttrs.version}";
16     hash = "sha256-VrjyAMou5BajOIb13RjEqVgOsDcllfzI/OJ81fyILjs=";
17   };
19   nativeBuildInputs = [
20     cmake
21   ];
23   nativeCheckInputs = [
24     gtest
25   ];
27   doCheck = true;
29   meta = with lib; {
30     description = "Compute functions of 2- and 3-dimensional regions";
31     homepage = "https://github.com/sandialabs/verdict";
32     license = licenses.bsd3;
33     changelog = "https://github.com/sandialabs/verdict/releases/tag/${finalAttrs.version}";
34     maintainers = with maintainers; [ bcdarwin ];
35     platforms = platforms.unix;
36   };