about summary refs log tree commit diff
path: root/pkgs/development/libraries/gf2x/default.nix
diff options
context:
space:
mode:
authorTimo Kaufmann <timokau@zoho.com>2020-01-02 17:24:11 +0100
committerTimo Kaufmann <timokau@zoho.com>2020-01-02 17:24:11 +0100
commit45e3be9ecabdafdde2eea41af5e5352a1edd95dd (patch)
treee612aeff6c68157aec2a4b20fe1ca4191bbff210 /pkgs/development/libraries/gf2x/default.nix
parentd41ff9b59fce807001301d5590553666f4ee59d6 (diff)
gf2x: 1.2 -> 1.3.0
Switch source to fetchgit since it removes the requirements to manually
find the correct link for each version.

More information at
https://github.com/NixOS/nixpkgs/pull/45299
Diffstat (limited to 'pkgs/development/libraries/gf2x/default.nix')
-rw-r--r--pkgs/development/libraries/gf2x/default.nix21
1 files changed, 13 insertions, 8 deletions
diff --git a/pkgs/development/libraries/gf2x/default.nix b/pkgs/development/libraries/gf2x/default.nix
index b1a2524065a55..4697f28bb9fb6 100644
--- a/pkgs/development/libraries/gf2x/default.nix
+++ b/pkgs/development/libraries/gf2x/default.nix
@@ -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;