aboutsummaryrefslogtreecommitdiff
path: root/pkgs/development/libraries/libinotify-kqueue
diff options
context:
space:
mode:
authorYegor Timoshenko <yegortimoshenko@riseup.net>2018-08-10 03:07:55 +0300
committerYegor Timoshenko <yegortimoshenko@riseup.net>2018-08-10 03:09:56 +0300
commitf4c2ee004957f4bb0dde2493afa65af1fd78f401 (patch)
tree34d66cbcd9e90a88b14bcb080368315a3075a38c /pkgs/development/libraries/libinotify-kqueue
parent6da4ab627f43ecfa21baf9ee5c439eda9cfa5f68 (diff)
libinotify-kqueue: init at 20180201
Diffstat (limited to 'pkgs/development/libraries/libinotify-kqueue')
-rw-r--r--pkgs/development/libraries/libinotify-kqueue/default.nix21
1 files changed, 21 insertions, 0 deletions
diff --git a/pkgs/development/libraries/libinotify-kqueue/default.nix b/pkgs/development/libraries/libinotify-kqueue/default.nix
new file mode 100644
index 000000000000..395b7c9f8566
--- /dev/null
+++ b/pkgs/development/libraries/libinotify-kqueue/default.nix
@@ -0,0 +1,21 @@
+{ 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 ];
+
+ 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;
+ };
+}