5c370c0b2a
GitOrigin-RevId: 33d1e753c82ffc557b4a585c77de43d4c922ebb5
24 lines
619 B
Nix
24 lines
619 B
Nix
{ lib, stdenv, fetchFromGitHub, cmake }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "libkqueue";
|
|
version = "2.6.2";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "mheily";
|
|
repo = "libkqueue";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-5Zds9sqHkFldJf3ThTPOiaGKohmFcIzY0ARDA0iswVk=";
|
|
};
|
|
|
|
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";
|
|
license = licenses.bsd2;
|
|
maintainers = [ ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|