Skip to content

Commit

Permalink
liburcu: 0.8.6 -> 0.9.3, doCheck = true
Browse files Browse the repository at this point in the history
... with hope it will start to work on Darwin.
/cc maintainer @bjornfor.
  • Loading branch information
vcunat committed Jan 26, 2017
1 parent 18eff26 commit f0bf46d
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions pkgs/development/libraries/liburcu/default.nix
@@ -1,14 +1,19 @@
{ stdenv, fetchurl }:
{ stdenv, fetchurl, perl }:

stdenv.mkDerivation rec {
version = "0.8.6";
version = "0.9.3";
name = "liburcu-${version}";

src = fetchurl {
url = "http://lttng.org/files/urcu/userspace-rcu-${version}.tar.bz2";
sha256 = "08dbfkdj4pm9s3q56nwa1vzldkf1jav61g2r4xq7mfhlw2yd79di";
sha256 = "01j0xp3f0w147yfyzybkjvb7i67i7prsvnkssgvgwry9lvk35khv";
};

nativeBuildInputs = stdenv.lib.optional doCheck perl;

preCheck = "patchShebangs tests/unit";
doCheck = true;

meta = with stdenv.lib; {
description = "Userspace RCU (read-copy-update) library";
homepage = http://lttng.org/urcu;
Expand Down

0 comments on commit f0bf46d

Please sign in to comment.