nixpkgs/pkgs/development/libraries/eclib/default.nix

50 lines
1.2 KiB
Nix
Raw Normal View History

2018-04-22 23:37:04 +02:00
{ stdenv
, fetchFromGitHub
, fetchpatch
2018-04-22 23:37:04 +02:00
, autoreconfHook
, pari
, ntl
, gmp
# "FLINT is optional and only used for one part of sparse matrix reduction,
# which is used in the modular symbol code but not mwrank or other elliptic
# curve programs." -- https://github.com/JohnCremona/eclib/blob/master/README
, withFlint ? false, flint ? null
}:
assert withFlint -> flint != null;
2016-10-10 19:53:05 +02:00
stdenv.mkDerivation rec {
name = "${pname}-${version}";
pname = "eclib";
2018-08-15 15:00:54 +02:00
version = "20180815"; # upgrade might break the sage interface
# sage tests to run:
# src/sage/interfaces/mwrank.py
# src/sage/libs/eclib
# ping @timokau for more info
2016-10-10 19:53:05 +02:00
src = fetchFromGitHub {
owner = "JohnCremona";
repo = "${pname}";
2018-04-22 23:37:04 +02:00
rev = "v${version}";
2018-08-15 15:00:54 +02:00
sha256 = "12syn83lnzx0xc4r1v3glfimbzndyilkpdmx50xrihbjz1hzczif";
2016-10-10 19:53:05 +02:00
};
2018-04-22 23:37:04 +02:00
buildInputs = [
pari
ntl
gmp
] ++ stdenv.lib.optionals withFlint [
flint
];
nativeBuildInputs = [
autoreconfHook
];
doCheck = true;
meta = with stdenv.lib; {
2016-10-10 19:53:05 +02:00
inherit version;
description = ''Elliptic curve tools'';
2018-04-22 23:37:04 +02:00
homepage = https://github.com/JohnCremona/eclib;
license = licenses.gpl2Plus;
maintainers = with maintainers; [ raskin timokau ];
platforms = platforms.all;
2016-10-10 19:53:05 +02:00
};
}