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

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

25 lines
638 B
Nix
Raw Normal View History

2022-04-22 04:20:00 +00:00
{ lib, stdenv, fetchFromGitHub, cmake }:
stdenv.mkDerivation rec {
pname = "libkqueue";
version = "2.6.2";
2022-04-22 04:20:00 +00:00
src = fetchFromGitHub {
owner = "mheily";
repo = "libkqueue";
rev = "v${version}";
sha256 = "sha256-5Zds9sqHkFldJf3ThTPOiaGKohmFcIzY0ARDA0iswVk=";
2022-04-22 04:20:00 +00:00
};
nativeBuildInputs = [ cmake ];
meta = with lib; {
description = "kqueue(2) compatibility library";
homepage = "https://github.com/mheily/libkqueue";
changelog = "https://github.com/mheily/libkqueue/raw/v${version}/ChangeLog";
2022-04-22 04:20:00 +00:00
license = licenses.bsd2;
maintainers = [ maintainers.marsam ];
platforms = platforms.linux;
};
}