Skip to content

Commit 2f41b5e

Browse files
committed
1 parent 5d9cba2 commit 2f41b5e

File tree

1 file changed

+5
-8
lines changed

1 file changed

+5
-8
lines changed

pkgs/by-name/vt/vte/package.nix

Lines changed: 5 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
stdenv,
33
lib,
4-
fetchFromGitLab,
4+
fetchurl,
55
fetchpatch,
66
gettext,
77
pkg-config,
@@ -34,19 +34,16 @@
3434

3535
stdenv.mkDerivation (finalAttrs: {
3636
pname = "vte";
37-
version = "0.78.2";
37+
version = "0.78.3";
3838

3939
outputs = [
4040
"out"
4141
"dev"
4242
] ++ lib.optional (gtkVersion != null) "devdoc";
4343

44-
src = fetchFromGitLab {
45-
domain = "gitlab.gnome.org";
46-
owner = "GNOME";
47-
repo = "vte";
48-
rev = finalAttrs.version;
49-
hash = "sha256-ZUECInBRNYkXJtGveLq8SR6YdWqJA0y9UJSxmc8mVNk=";
44+
src = fetchurl {
45+
url = "mirror://gnome/sources/vte/${lib.versions.majorMinor finalAttrs.version}/vte-${finalAttrs.version}.tar.xz";
46+
hash = "sha256-l+KsOie8V1U1iiI/VfWiUYZUqgNhv8YaGWwcLgh5jv8=";
5047
};
5148

5249
patches = [

0 commit comments

Comments
 (0)