summary refs log tree commit diff
path: root/pkgs/development/libraries/libuv
diff options
context:
space:
mode:
authorBenjamin Saunders <ben.e.saunders@gmail.com>2015-01-07 20:56:06 -0800
committerBenjamin Saunders <ben.e.saunders@gmail.com>2015-01-07 20:56:06 -0800
commit1f80c4cb2d840eb5451d29bd3f962c1c0b3c97eb (patch)
tree45994aee9724cb1ed1f62de534eec57704d96dcd /pkgs/development/libraries/libuv
parentb63caa13b3da56df09a0b33813f9cd5bb3eecd86 (diff)
downloadnixlib-1f80c4cb2d840eb5451d29bd3f962c1c0b3c97eb.tar
nixlib-1f80c4cb2d840eb5451d29bd3f962c1c0b3c97eb.tar.gz
nixlib-1f80c4cb2d840eb5451d29bd3f962c1c0b3c97eb.tar.bz2
nixlib-1f80c4cb2d840eb5451d29bd3f962c1c0b3c97eb.tar.lz
nixlib-1f80c4cb2d840eb5451d29bd3f962c1c0b3c97eb.tar.xz
nixlib-1f80c4cb2d840eb5451d29bd3f962c1c0b3c97eb.tar.zst
nixlib-1f80c4cb2d840eb5451d29bd3f962c1c0b3c97eb.zip
libuv: update to new repository location
Diffstat (limited to 'pkgs/development/libraries/libuv')
-rw-r--r--pkgs/development/libraries/libuv/default.nix4
1 files changed, 2 insertions, 2 deletions
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;