My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/libraries/liburcu/default.nix

25 lines
602 B

{ lib, stdenv, fetchurl, perl }:
stdenv.mkDerivation rec {
version = "0.13.1";
pname = "liburcu";
src = fetchurl {
url = "https://lttng.org/files/urcu/userspace-rcu-${version}.tar.bz2";
sha256 = "sha256-MhPzPSuPcQ65IOsauyeewEv4rmNh9E8lE8KMINM2MIM=";
};
checkInputs = [ perl ];
preCheck = "patchShebangs tests/unit";
doCheck = true;
meta = with lib; {
description = "Userspace RCU (read-copy-update) library";
homepage = "https://lttng.org/urcu";
license = licenses.lgpl21Plus;
platforms = platforms.unix;
maintainers = [ maintainers.bjornfor ];
};
}