mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-04-16 15:38:16 +00:00
adept: init at 2.1.1
This commit is contained in:
parent
0f06795ad0
commit
3c09a5b472
35
pkgs/by-name/ad/adept/package.nix
Normal file
35
pkgs/by-name/ad/adept/package.nix
Normal file
@ -0,0 +1,35 @@
|
||||
{
|
||||
lib,
|
||||
autoconf,
|
||||
automake,
|
||||
stdenv,
|
||||
fetchurl,
|
||||
pkg-config,
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation (finalAttrs: {
|
||||
pname = "adept";
|
||||
version = "2.1.1";
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://www.met.reading.ac.uk/clouds/adept/adept-${finalAttrs.version}.tar.gz";
|
||||
hash = "sha256-DO8zToLfRSbTdhvdgxmmPnWCyWsvHMiDkXKQGLSCXEc=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [
|
||||
autoconf
|
||||
automake
|
||||
pkg-config
|
||||
];
|
||||
|
||||
doCheck = true;
|
||||
|
||||
meta = {
|
||||
description = "Combined array and automatic differentiation library in C++";
|
||||
homepage = "https://www.met.reading.ac.uk/clouds/adept/";
|
||||
license = lib.licenses.asl20;
|
||||
maintainers = with lib.maintainers; [
|
||||
athas
|
||||
];
|
||||
};
|
||||
})
|
Loading…
Reference in New Issue
Block a user