nixpkgs/pkgs/by-name/cp/cppad/package.nix
Philip Taron 22b88ba79d
treewide: adjust meta descriptions to avoid definite or indefinite articles
This patch was produced in Vim by me, a human being. All errors are the fault of the operator. I did try to be careful.

Co-authored-by: Peder Bergebakken Sundt <pbsds@hotmail.com>
Co-authored-by: dotlambda <nix@dotlambda.de>
2025-06-05 11:04:25 -07:00

34 lines
601 B
Nix

{
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
];
};
})