Files

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

34 lines
601 B
Nix
Raw Permalink Normal View History

2025-10-09 14:15:47 +02:00
{
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 = "C++ Algorithmic Differentiation Package";
homepage = "https://github.com/coin-or/CppAD";
license = lib.licenses.gpl2Plus;
maintainers = with lib.maintainers; [
athas
];
};
})