mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-04-12 10:07:21 +00:00
commit
47c8a95f8e
44
pkgs/development/libraries/science/math/wcpg/default.nix
Normal file
44
pkgs/development/libraries/science/math/wcpg/default.nix
Normal 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 ];
|
||||||
|
};
|
||||||
|
}
|
@ -33605,6 +33605,8 @@ with pkgs;
|
|||||||
|
|
||||||
gmsh = callPackage ../applications/science/math/gmsh { };
|
gmsh = callPackage ../applications/science/math/gmsh { };
|
||||||
|
|
||||||
|
wcpg = callPackage ../development/libraries/science/math/wcpg { };
|
||||||
|
|
||||||
zn_poly = callPackage ../development/libraries/science/math/zn_poly { };
|
zn_poly = callPackage ../development/libraries/science/math/zn_poly { };
|
||||||
|
|
||||||
### SCIENCE/MOLECULAR-DYNAMICS
|
### SCIENCE/MOLECULAR-DYNAMICS
|
||||||
|
Loading…
Reference in New Issue
Block a user