Merge pull request #180538 from wegank/wcpg-init

wcpg: init at 0.9
This commit is contained in:
Sandro 2022-07-07 21:51:35 +02:00 committed by GitHub
commit 47c8a95f8e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 46 additions and 0 deletions

View file

@ -0,0 +1,44 @@
{ lib
, stdenv
, fetchFromGitHub
, autoreconfHook
, blas
, gmp
, lapack
, libf2c
, mpfi
, mpfr
}:
stdenv.mkDerivation rec {
pname = "wcpg";
version = "0.9";
src = fetchFromGitHub {
owner = "fixif";
repo = pname;
rev = version;
sha256 = "sha256-uA/ENjf4urEO+lqebkp/k54199o2434FYgPSmYCG4UA=";
};
nativeBuildInputs = [
autoreconfHook
];
buildInputs = [
blas
gmp
lapack
libf2c
mpfi
mpfr
];
meta = with lib; {
description = "Worst-Case Peak-Gain library";
homepage = "https://github.com/fixif/WCPG";
license = licenses.cecill-b;
platforms = platforms.unix;
maintainers = with maintainers; [ wegank ];
};
}

View file

@ -33605,6 +33605,8 @@ with pkgs;
gmsh = callPackage ../applications/science/math/gmsh { };
wcpg = callPackage ../development/libraries/science/math/wcpg { };
zn_poly = callPackage ../development/libraries/science/math/zn_poly { };
### SCIENCE/MOLECULAR-DYNAMICS