Merge pull request #169877 from marsam/init-libkqueue

libkqueue: init at 2.6.0
This commit is contained in:
Mario Rodas 2022-04-24 13:00:02 -05:00 committed by GitHub
commit 8aa34967fb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 25 additions and 0 deletions

View File

@ -0,0 +1,23 @@
{ lib, stdenv, fetchFromGitHub, cmake }:
stdenv.mkDerivation rec {
pname = "libkqueue";
version = "2.6.0";
src = fetchFromGitHub {
owner = "mheily";
repo = "libkqueue";
rev = "v${version}";
sha256 = "sha256-qh1r95A/ngg4KWSVYlC8ldv2ClV+rRPNcJDH+aAGxHs=";
};
nativeBuildInputs = [ cmake ];
meta = with lib; {
description = "kqueue(2) compatibility library";
homepage = "https://github.com/mheily/libkqueue";
license = licenses.bsd2;
maintainers = [ maintainers.marsam ];
platforms = platforms.linux;
};
}

View File

@ -18604,6 +18604,8 @@ with pkgs;
libivykis = callPackage ../development/libraries/libivykis { };
libkqueue = callPackage ../development/libraries/libkqueue { };
liblastfmSF = callPackage ../development/libraries/liblastfmSF { };
liblcf = callPackage ../development/libraries/liblcf { };