mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 07:00:43 +00:00
Merge pull request #76829 from timokau/gf2x-1.3.0
ntl: 11.4.1 -> 11.4.2, gf2x: 1.2 -> 1.3.0
This commit is contained in:
commit
552b38ed74
|
@ -1,20 +1,25 @@
|
|||
{ stdenv
|
||||
, lib
|
||||
, fetchurl
|
||||
, fetchgit
|
||||
, autoreconfHook
|
||||
, optimize ? false # impure hardware optimizations
|
||||
}:
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "gf2x";
|
||||
version = "1.2"; # remember to also update the url
|
||||
version = "1.3.0";
|
||||
|
||||
src = fetchurl {
|
||||
# find link to latest version (with file id) here: https://gforge.inria.fr/projects/gf2x/
|
||||
# Requested a predictable link:
|
||||
# https://gforge.inria.fr/tracker/index.php?func=detail&aid=21704&group_id=1874&atid=6982
|
||||
url = "https://gforge.inria.fr/frs/download.php/file/36934/gf2x-${version}.tar.gz";
|
||||
sha256 = "0d6vh1mxskvv3bxl6byp7gxxw3zzpkldrxnyajhnl05m0gx7yhk1";
|
||||
# upstream has plans to move to gitlab:
|
||||
# https://github.com/NixOS/nixpkgs/pull/45299#issuecomment-564477936
|
||||
src = fetchgit {
|
||||
url = "https://scm.gforge.inria.fr/anonscm/git/gf2x/gf2x.git";
|
||||
rev = "gf2x-${version}";
|
||||
sha256 = "04g5jg0i4vz46b4w2dvbmahwzi3k6b8g515mfw7im1inc78s14id";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [
|
||||
autoreconfHook
|
||||
];
|
||||
|
||||
# no actual checks present yet (as of 1.2), but can't hurt trying
|
||||
# for an indirect test, run ntl's test suite
|
||||
doCheck = true;
|
||||
|
|
|
@ -14,11 +14,11 @@ assert withGf2x -> gf2x != null;
|
|||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "ntl";
|
||||
version = "11.4.1";
|
||||
version = "11.4.2";
|
||||
|
||||
src = fetchurl {
|
||||
url = "http://www.shoup.net/ntl/ntl-${version}.tar.gz";
|
||||
sha256 = "03k2hb6yn49d1f9cdig2ci7h5ga0x3nb3li60hh19wdqzg28f1m3";
|
||||
sha256 = "11r3f37psdbjw926kf6bn5bp69aj88f5cchvv1xh2bhrcjdp4r1b";
|
||||
};
|
||||
|
||||
buildInputs = [
|
||||
|
@ -67,6 +67,8 @@ stdenv.mkDerivation rec {
|
|||
# Upstream contact: maintainer is victorshoup on GitHub. Alternatively the
|
||||
# email listed on the homepage.
|
||||
homepage = http://www.shoup.net/ntl/;
|
||||
# also locally at "${src}/doc/tour-changes.html";
|
||||
changelog = "https://www.shoup.net/ntl/doc/tour-changes.html";
|
||||
maintainers = with maintainers; [ timokau ];
|
||||
license = licenses.gpl2Plus;
|
||||
platforms = platforms.all;
|
||||
|
|
Loading…
Reference in a new issue