1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

libuv: update to new repository location

This commit is contained in:
Benjamin Saunders 2015-01-07 20:56:06 -08:00
parent b63caa13b3
commit 1f80c4cb2d

View file

@ -6,7 +6,7 @@ let
meta = with lib; {
description = "A multi-platform support library with a focus on asynchronous I/O";
homepage = https://github.com/joyent/libuv;
homepage = https://github.com/libuv/libuv;
maintainers = with maintainers; [ cstrahan ];
platforms = with platforms; linux ++ darwin;
};
@ -17,7 +17,7 @@ let
else "libuv-${stability}-${version}";
mkSrc = version: sha256: fetchFromGitHub {
owner = "joyent";
owner = "libuv";
repo = "libuv";
rev = "v${version}";
inherit sha256;