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.
1 parent f51b59e commit bed8239Copy full SHA for bed8239
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,9 +9,11 @@ stdenv.mkDerivation rec {
9
pname = "gf2x";
10
version = "1.3.0";
11
12
- src = fetchgit {
13
- url = "https://gitlab.inria.fr/gf2x/gf2x";
14
- rev = "gf2x-${version}";
+ src = fetchFromGitLab {
+ domain = "gitlab.inria.fr";
+ owner = "gf2x";
15
+ repo = pname;
16
+ rev = "${pname}-${version}";
17
sha256 = "04g5jg0i4vz46b4w2dvbmahwzi3k6b8g515mfw7im1inc78s14id";
18
};
19
0 commit comments