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

utf8proc: 1.2 -> 1.3

+5 -7
+5 -7
pkgs/development/libraries/utf8proc/default.nix
··· 1 - { stdenv, fetchFromGitHub }: 1 + { stdenv, fetchurl }: 2 2 3 3 stdenv.mkDerivation rec { 4 4 name = "utf8proc-${version}"; 5 - version = "v1.2"; 5 + version = "1.3"; 6 6 7 - src = fetchFromGitHub { 8 - owner = "JuliaLang"; 9 - repo = "utf8proc"; 10 - rev = "${version}"; 11 - sha256 = "1ryjlcnpfm7fpkq6444ybi576hbnh2l0w7kjhbqady5lxwjyg3pf"; 7 + src = fetchurl { 8 + url = "https://github.com/JuliaLang/utf8proc/archive/v${version}.tar.gz"; 9 + sha256 = "07r7djkmd399wl9cn0s2iqjhmm7l5iifp5h1yf2in9s366mlhkkg"; 12 10 }; 13 11 14 12 makeFlags = [ "prefix=$(out)" ];