nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix

libkqueue: 2.6.1 -> 2.6.2

https://github.com/mheily/libkqueue/raw/v2.6.2/ChangeLog

+3 -2
+3 -2
pkgs/development/libraries/libkqueue/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "libkqueue"; 5 - version = "2.6.1"; 5 + version = "2.6.2"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "mheily"; 9 9 repo = "libkqueue"; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-YKKBHOxjUS7+/ib4gcR7EYjjVOwhHVksYasLhErdV8s="; 11 + sha256 = "sha256-5Zds9sqHkFldJf3ThTPOiaGKohmFcIzY0ARDA0iswVk="; 12 12 }; 13 13 14 14 nativeBuildInputs = [ cmake ]; ··· 16 16 meta = with lib; { 17 17 description = "kqueue(2) compatibility library"; 18 18 homepage = "https://github.com/mheily/libkqueue"; 19 + changelog = "https://github.com/mheily/libkqueue/raw/v${version}/ChangeLog"; 19 20 license = licenses.bsd2; 20 21 maintainers = [ maintainers.marsam ]; 21 22 platforms = platforms.linux;