summary refs log tree commit diff
diff options
context:
space:
mode:
authorYegor Timoshenko <yegortimoshenko@riseup.net>2018-08-10 12:22:19 +0300
committerYegor Timoshenko <yegortimoshenko@riseup.net>2018-08-10 12:27:27 +0300
commit6f35084ea701a8d820b5191ed8abb65998d5898a (patch)
treeb1a2ef567514cb62c55d3152c4be8e45a5655ea1
parentf4c2ee004957f4bb0dde2493afa65af1fd78f401 (diff)
downloadnixpkgs-6f35084ea701a8d820b5191ed8abb65998d5898a.tar
nixpkgs-6f35084ea701a8d820b5191ed8abb65998d5898a.tar.gz
nixpkgs-6f35084ea701a8d820b5191ed8abb65998d5898a.tar.bz2
nixpkgs-6f35084ea701a8d820b5191ed8abb65998d5898a.tar.lz
nixpkgs-6f35084ea701a8d820b5191ed8abb65998d5898a.tar.xz
nixpkgs-6f35084ea701a8d820b5191ed8abb65998d5898a.tar.zst
nixpkgs-6f35084ea701a8d820b5191ed8abb65998d5898a.zip
libinotify-kqueue: enable tests
-rw-r--r--pkgs/development/libraries/libinotify-kqueue/default.nix3
1 files changed, 3 insertions, 0 deletions
diff --git a/pkgs/development/libraries/libinotify-kqueue/default.nix b/pkgs/development/libraries/libinotify-kqueue/default.nix
index 395b7c9f856..6fc507daf64 100644
--- a/pkgs/development/libraries/libinotify-kqueue/default.nix
+++ b/pkgs/development/libraries/libinotify-kqueue/default.nix
@@ -11,6 +11,9 @@ stdenv.mkDerivation rec {
 
   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;