Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 3000ae860258
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 56366b5e668d
Choose a head ref
  • 2 commits
  • 1 file changed
  • 2 contributors

Commits on Nov 29, 2016

  1. libuv: 1.9.1 -> 1.10.1

    Taken from #20650.
    lo1tuma authored and vcunat committed Nov 29, 2016
    Copy the full SHA
    0f7f0ce View commit details
  2. Unverified

    This commit is not signed, but one or more authors requires that any commit attributed to them is signed.
    Copy the full SHA
    56366b5 View commit details
Showing with 11 additions and 2 deletions.
  1. +11 −2 pkgs/development/libraries/libuv/default.nix
13 changes: 11 additions & 2 deletions pkgs/development/libraries/libuv/default.nix
Original file line number Diff line number Diff line change
@@ -3,23 +3,32 @@
, ApplicationServices, CoreServices }:

stdenv.mkDerivation rec {
version = "1.9.1";
version = "1.10.1";
name = "libuv-${version}";

src = fetchFromGitHub {
owner = "libuv";
repo = "libuv";
rev = "v${version}";
sha256 = "1kc386gkkkymgz9diz1z4r8impcsmki5k88dsiasd6v9bfvq04cc";
sha256 = "0gna53fgsjjs38kv1g20xfaalv0fk3xncb6abga3saswrv283hx0";
};

# these checks are probably network-dependent
postPatch = lib.optionalString doCheck ''
sed '/getnameinfo_basic/d' -i test/test-list.h
'';

buildInputs = [ automake autoconf libtool pkgconfig ]
++ stdenv.lib.optionals stdenv.isDarwin [ ApplicationServices CoreServices ];

preConfigure = ''
LIBTOOLIZE=libtoolize ./autogen.sh
'';

enableParallelBuilding = true;

doCheck = true;

meta = with lib; {
description = "A multi-platform support library with a focus on asynchronous I/O";
homepage = https://github.com/libuv/libuv;