cppad: init at 20250000.2

This commit is contained in:
Troels Henriksen
2025-03-13 23:00:45 +05:30
committed by Emery Hemingway
parent 0707bc8d66
commit 0f06795ad0
+33
View File
@@ -0,0 +1,33 @@
{
lib,
stdenv,
fetchFromGitHub,
pkg-config,
cmake,
}:
stdenv.mkDerivation (finalAttrs: {
pname = "cppad";
version = "20250000.2";
src = fetchFromGitHub {
owner = "coin-or";
repo = "CppAD";
tag = "${finalAttrs.version}";
hash = "sha256-rAKD/PAjepDchvrJp7iLYw5doNq8Af1oVh61gfMcNYI=";
};
nativeBuildInputs = [
cmake
pkg-config
];
meta = {
description = "A C++ Algorithmic Differentiation Package";
homepage = "https://github.com/coin-or/CppAD";
license = lib.licenses.gpl2Plus;
maintainers = with lib.maintainers; [
athas
];
};
})