nixpkgs/pkgs/development/libraries/liburcu/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

27 lines
691 B
Nix
Raw Normal View History

{ lib, stdenv, fetchurl, perl }:
stdenv.mkDerivation rec {
2023-03-07 01:16:32 +00:00
version = "0.14.0";
pname = "liburcu";
src = fetchurl {
url = "https://lttng.org/files/urcu/userspace-rcu-${version}.tar.bz2";
2023-03-07 01:16:32 +00:00
sha256 = "sha256-ykO/Jh1NOSz/IN+uRAg2YDvwCfziT9ybJpfYN6IjnU8=";
};
nativeCheckInputs = [ perl ];
preCheck = "patchShebangs tests/unit";
doCheck = true;
meta = with lib; {
description = "Userspace RCU (read-copy-update) library";
homepage = "https://lttng.org/urcu";
2023-03-07 04:20:00 +00:00
changelog = "https://github.com/urcu/userspace-rcu/raw/v${version}/ChangeLog";
license = licenses.lgpl21Plus;
platforms = platforms.unix;
maintainers = [ maintainers.bjornfor ];
};
}