summary refs log tree commit diff
path: root/pkgs/development/libraries/libuv/default.nix
diff options
context:
space:
mode:
authorMario Rodas <marsam@users.noreply.github.com>2020-09-08 04:20:00 +0000
committerMario Rodas <marsam@users.noreply.github.com>2020-09-08 04:20:00 +0000
commit90c5f2f9537cde699424943e2b63036ca50a479e (patch)
treeb6282d839dd344eb77c95e39d5d991c158254f57 /pkgs/development/libraries/libuv/default.nix
parent9b7cf1aa42e1ad0892e2894c41562752050c0366 (diff)
downloadnixpkgs-90c5f2f9537cde699424943e2b63036ca50a479e.tar
nixpkgs-90c5f2f9537cde699424943e2b63036ca50a479e.tar.gz
nixpkgs-90c5f2f9537cde699424943e2b63036ca50a479e.tar.bz2
nixpkgs-90c5f2f9537cde699424943e2b63036ca50a479e.tar.lz
nixpkgs-90c5f2f9537cde699424943e2b63036ca50a479e.tar.xz
nixpkgs-90c5f2f9537cde699424943e2b63036ca50a479e.tar.zst
nixpkgs-90c5f2f9537cde699424943e2b63036ca50a479e.zip
libuv: 1.38.1 -> 1.39.0
Diffstat (limited to 'pkgs/development/libraries/libuv/default.nix')
-rw-r--r--pkgs/development/libraries/libuv/default.nix7
1 files changed, 4 insertions, 3 deletions
diff --git a/pkgs/development/libraries/libuv/default.nix b/pkgs/development/libraries/libuv/default.nix
index cf73a64f675..1314eab1642 100644
--- a/pkgs/development/libraries/libuv/default.nix
+++ b/pkgs/development/libraries/libuv/default.nix
@@ -1,14 +1,14 @@
 { stdenv, lib, fetchFromGitHub, autoconf, automake, libtool, pkgconfig, ApplicationServices, CoreServices }:
 
 stdenv.mkDerivation rec {
-  version = "1.38.1";
+  version = "1.39.0";
   pname = "libuv";
 
   src = fetchFromGitHub {
     owner = pname;
     repo = pname;
     rev = "v${version}";
-    sha256 = "0cvabjhi53qw94zyjkqamx0c607ayydfb4f3djx2gj8ab2p7s29n";
+    sha256 = "1r9xs9is5rgid5ylbprvf88lqjrmvky86q9h8iqlq7rcrv24x6kl";
   };
 
   postPatch = let
@@ -66,7 +66,8 @@ stdenv.mkDerivation rec {
 
   meta = with lib; {
     description = "A multi-platform support library with a focus on asynchronous I/O";
-    homepage    = "https://github.com/libuv/libuv";
+    homepage    = "https://libuv.org/";
+    changelog   = "https://github.com/libuv/libuv/blob/v${version}/ChangeLog";
     maintainers = with maintainers; [ cstrahan ];
     platforms   = with platforms; linux ++ darwin;
     license     = with licenses; [ mit isc bsd2 bsd3 cc-by-40 ];