Merge pull request #277172 from bcdarwin/init-verdict

verdict: init at 1.4.2
This commit is contained in:
Mario Rodas 2024-01-06 08:49:54 -05:00 committed by GitHub
commit c74198e14e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -0,0 +1,37 @@
{ lib
, stdenv
, fetchFromGitHub
, cmake
, gtest
}:
stdenv.mkDerivation (finalAttrs: {
pname = "verdict";
version = "1.4.2";
src = fetchFromGitHub {
owner = "sandialabs";
repo = "verdict";
rev = "refs/tags/${finalAttrs.version}";
hash = "sha256-VrjyAMou5BajOIb13RjEqVgOsDcllfzI/OJ81fyILjs=";
};
nativeBuildInputs = [
cmake
];
nativeCheckInputs = [
gtest
];
doCheck = true;
meta = with lib; {
description = "Compute functions of 2- and 3-dimensional regions";
homepage = "https://github.com/sandialabs/verdict";
license = licenses.bsd3;
changelog = "https://github.com/sandialabs/verdict/releases/tag/${finalAttrs.version}";
maintainers = with maintainers; [ bcdarwin ];
platforms = platforms.unix;
};
})