4e8dfe71d3
liburcu is a userspace RCU (read-copy-update) library that is used by LTTng - Linux Trace Toolkit (next generation).
21 lines
518 B
Nix
21 lines
518 B
Nix
{ stdenv, fetchurl }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
version = "0.7.7";
|
|
name = "liburcu-${version}";
|
|
|
|
src = fetchurl {
|
|
url = "http://lttng.org/files/urcu/userspace-rcu-${version}.tar.bz2";
|
|
sha256 = "1yxxnhrsy6sv6bmp7j96jjynnqns01zjgj94mk70jz54zvcagf4a";
|
|
};
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Userspace RCU (read-copy-update) library";
|
|
homepage = http://lttng.org/urcu;
|
|
license = licenses.lgpl21Plus;
|
|
platforms = platforms.linux;
|
|
maintainers = [ maintainers.bjornfor ];
|
|
};
|
|
|
|
}
|