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

libuv: 1.24.1 -> 1.26.0

https://github.com/libuv/libuv/releases/tag/v1.26.0
https://github.com/libuv/libuv/releases/tag/v1.25.0

+5 -5
+5 -5
pkgs/development/libraries/libuv/default.nix
··· 1 { stdenv, lib, fetchpatch, fetchFromGitHub, autoconf, automake, libtool, pkgconfig, ApplicationServices, CoreServices }: 2 3 stdenv.mkDerivation rec { 4 - version = "1.24.1"; 5 - name = "libuv-${version}"; 6 7 src = fetchFromGitHub { 8 - owner = "libuv"; 9 - repo = "libuv"; 10 rev = "v${version}"; 11 - sha256 = "0lpq8anmy69pcmkhk8giyp78q8dadcy2562g4krqaq8a5xy825ab"; 12 }; 13 14 postPatch = let
··· 1 { stdenv, lib, fetchpatch, fetchFromGitHub, autoconf, automake, libtool, pkgconfig, ApplicationServices, CoreServices }: 2 3 stdenv.mkDerivation rec { 4 + version = "1.26.0"; 5 + pname = "libuv"; 6 7 src = fetchFromGitHub { 8 + owner = pname; 9 + repo = pname; 10 rev = "v${version}"; 11 + sha256 = "08jvjyn5bp4xnzd5g4pi534mklm6hz5pw6wbzbaq3cnwb6a04iwj"; 12 }; 13 14 postPatch = let