cppad: init at 20250000.2
This commit is contained in:
committed by
Emery Hemingway
parent
0707bc8d66
commit
0f06795ad0
@@ -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
|
||||
];
|
||||
};
|
||||
})
|
||||
Reference in New Issue
Block a user