zn_poly: init at 0.9
This commit is contained in:
parent
19a6f0e02b
commit
28c023e246
2 changed files with 52 additions and 0 deletions
50
pkgs/development/libraries/science/math/zn_poly/default.nix
Normal file
50
pkgs/development/libraries/science/math/zn_poly/default.nix
Normal file
|
@ -0,0 +1,50 @@
|
|||
{ stdenv
|
||||
, fetchurl
|
||||
, gmp
|
||||
, python2
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
version = "0.9";
|
||||
pname = "zn_poly";
|
||||
name = "${pname}-${version}";
|
||||
|
||||
src = fetchurl {
|
||||
url = "http://web.maths.unsw.edu.au/~davidharvey/code/zn_poly/releases/zn_poly-${version}.tar.gz";
|
||||
sha256 = "1kxl25av7i3v68k32hw5bayrfcvmahmqvs97mlh9g238gj4qb851";
|
||||
};
|
||||
|
||||
buildInputs = [
|
||||
gmp
|
||||
];
|
||||
|
||||
nativeBuildInputs = [
|
||||
python2 # needed by ./configure to create the makefile
|
||||
];
|
||||
|
||||
libname = "libzn_poly${stdenv.targetPlatform.extensions.sharedLibrary}";
|
||||
|
||||
# Tuning (either autotuning or with hand-written paramters) is possible
|
||||
# but not implemented here.
|
||||
# It seems buggy anyways (see homepage).
|
||||
buildFlags = [ "all" libname ];
|
||||
|
||||
|
||||
# `make install` fails to install some header files and the lib file.
|
||||
installPhase = ''
|
||||
mkdir -p "$out/include/zn_poly"
|
||||
mkdir -p "$out/lib"
|
||||
cp "${libname}" "$out/lib"
|
||||
cp include/*.h "$out/include/zn_poly"
|
||||
'';
|
||||
|
||||
doCheck = true;
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
homepage = http://web.maths.unsw.edu.au/~davidharvey/code/zn_poly/;
|
||||
description = "Polynomial arithmetic over Z/nZ";
|
||||
license = with licenses; [ gpl3 ];
|
||||
maintainers = with maintainers; [ timokau ];
|
||||
platforms = platforms.linux;
|
||||
};
|
||||
}
|
|
@ -19832,6 +19832,8 @@ with pkgs;
|
|||
|
||||
gmsh = callPackage ../applications/science/math/gmsh { };
|
||||
|
||||
zn_poly = callPackage ../development/libraries/science/math/zn_poly { };
|
||||
|
||||
### SCIENCE/MOLECULAR-DYNAMICS
|
||||
|
||||
lammps = callPackage ../applications/science/molecular-dynamics/lammps {
|
||||
|
|
Loading…
Reference in a new issue