We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 1d2c473 + bed8239 commit 4a29096Copy full SHA for 4a29096
pkgs/development/libraries/gf2x/default.nix
@@ -1,6 +1,6 @@
1
{ stdenv
2
, lib
3
-, fetchgit
+, fetchFromGitLab
4
, autoreconfHook
5
, buildPackages
6
, optimize ? false # impure hardware optimizations
@@ -9,11 +9,11 @@ stdenv.mkDerivation rec {
9
pname = "gf2x";
10
version = "1.3.0";
11
12
- # upstream has plans to move to gitlab:
13
- # https://github.com/NixOS/nixpkgs/pull/45299#issuecomment-564477936
14
- src = fetchgit {
15
- url = "https://scm.gforge.inria.fr/anonscm/git/gf2x/gf2x.git";
16
- rev = "gf2x-${version}";
+ src = fetchFromGitLab {
+ domain = "gitlab.inria.fr";
+ owner = "gf2x";
+ repo = pname;
+ rev = "${pname}-${version}";
17
sha256 = "04g5jg0i4vz46b4w2dvbmahwzi3k6b8g515mfw7im1inc78s14id";
18
};
19
0 commit comments