Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

libdex: 0.4.3 → 0.6.0

https://gitlab.gnome.org/GNOME/libdex/-/compare/0.4.3...0.6.0

fetch tarball instead of git repo

Changelog-Reviewed-By: Maxine Aubrey <max@ine.dev>

authored by Bobby Rong and committed by Maxine Aubrey cc69fde5 8d0983b1

+5 -8
+5 -8
pkgs/development/libraries/libdex/default.nix
··· 1 { stdenv 2 , lib 3 - , fetchFromGitLab 4 , gi-docgen 5 , gobject-introspection 6 , meson ··· 14 15 stdenv.mkDerivation rec { 16 pname = "libdex"; 17 - version = "0.4.3"; 18 19 outputs = [ "out" "dev" "devdoc" ]; 20 21 - src = fetchFromGitLab { 22 - domain = "gitlab.gnome.org"; 23 - owner = "GNOME"; 24 - repo = "libdex"; 25 - rev = version; 26 - sha256 = "0GNlgJgAOE3JGwu/6Zsh4sjFapA7nUcGD3lgZZJ0BfQ="; 27 }; 28 29 nativeBuildInputs = [
··· 1 { stdenv 2 , lib 3 + , fetchurl 4 , gi-docgen 5 , gobject-introspection 6 , meson ··· 14 15 stdenv.mkDerivation rec { 16 pname = "libdex"; 17 + version = "0.6.0"; 18 19 outputs = [ "out" "dev" "devdoc" ]; 20 21 + src = fetchurl { 22 + url = "mirror://gnome/sources/${pname}/${lib.versions.majorMinor version}/${pname}-${version}.tar.xz"; 23 + hash = "sha256-HojSsAYo5Ya3I7f7pRXM6XUvrxISLN5aPA1biDmYUio="; 24 }; 25 26 nativeBuildInputs = [