Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / libraries / libkqueue / default.nix
blob5f96353d9d69f345b34be24718d436ad7463b9ec
1 { lib, stdenv, fetchFromGitHub, cmake }:
3 stdenv.mkDerivation rec {
4   pname = "libkqueue";
5   version = "2.6.2";
7   src = fetchFromGitHub {
8     owner = "mheily";
9     repo = "libkqueue";
10     rev = "v${version}";
11     sha256 = "sha256-5Zds9sqHkFldJf3ThTPOiaGKohmFcIzY0ARDA0iswVk=";
12   };
14   nativeBuildInputs = [ cmake ];
16   meta = with lib; {
17     description = "kqueue(2) compatibility library";
18     homepage = "https://github.com/mheily/libkqueue";
19     changelog = "https://github.com/mheily/libkqueue/raw/v${version}/ChangeLog";
20     license = licenses.bsd2;
21     maintainers = [ maintainers.marsam ];
22     platforms = platforms.linux;
23   };