mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 07:31:26 +00:00
Merge pull request #44852 from yegortimoshenko/20180810.025530/libinotify-kqueue
libinotify-kqueue: init at 20180201
This commit is contained in:
commit
ccd9fdd3cd
24
pkgs/development/libraries/libinotify-kqueue/default.nix
Normal file
24
pkgs/development/libraries/libinotify-kqueue/default.nix
Normal file
@ -0,0 +1,24 @@
|
||||
{ stdenv, fetchzip, autoreconfHook }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "libinotify-kqueue-${version}";
|
||||
version = "20180201";
|
||||
|
||||
src = fetchzip {
|
||||
url = "https://github.com/libinotify-kqueue/libinotify-kqueue/archive/${version}.tar.gz";
|
||||
sha256 = "0dkh6n0ghhcl7cjkjmpin118h7al6i4vlkmw57vip5f6ngr6q3pl";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ autoreconfHook ];
|
||||
|
||||
doCheck = true;
|
||||
checkFlags = [ "test" ];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "Inotify shim for macOS and BSD";
|
||||
homepage = https://github.com/libinotify-kqueue/libinotify-kqueue;
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ yegortimoshenko ];
|
||||
platforms = with platforms; darwin ++ freebsd ++ netbsd ++ openbsd;
|
||||
};
|
||||
}
|
@ -10371,6 +10371,8 @@ with pkgs;
|
||||
libindicator-gtk3 = libindicator.override { gtkVersion = "3"; };
|
||||
libindicator = callPackage ../development/libraries/libindicator { };
|
||||
|
||||
libinotify-kqueue = callPackage ../development/libraries/libinotify-kqueue { };
|
||||
|
||||
libiodbc = callPackage ../development/libraries/libiodbc {
|
||||
useGTK = config.libiodbc.gtk or false;
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user