diff --git a/pkgs/development/libraries/libuv/default.nix b/pkgs/development/libraries/libuv/default.nix index b11b889a8d99..92c2431e1d61 100644 --- a/pkgs/development/libraries/libuv/default.nix +++ b/pkgs/development/libraries/libuv/default.nix @@ -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;