From 0ee3bb2e62a06cd721640ce57a77e043de158e54 Mon Sep 17 00:00:00 2001 From: Zhaofeng Li Date: Wed, 28 Sep 2022 18:47:40 -0600 Subject: [PATCH] Update inotify-tools alias No longer exists in unstable since https://github.com/NixOS/nixpkgs/pull/192681. --- integration-tests/tools.nix | 2 +- src/nix/hive/modules.nix | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/integration-tests/tools.nix b/integration-tests/tools.nix index 893ced7..f643f8b 100644 --- a/integration-tests/tools.nix +++ b/integration-tests/tools.nix @@ -71,7 +71,7 @@ let environment.systemPackages = with pkgs; [ git # for git flake tests - inotifyTools # for key services build + inotify-tools # for key services build # HACK: copy stderr to both stdout and stderr # (the test framework only captures stdout, and only stderr appears on screen during the build) diff --git a/src/nix/hive/modules.nix b/src/nix/hive/modules.nix index 32f81e0..25f2e16 100644 --- a/src/nix/hive/modules.nix +++ b/src/nix/hive/modules.nix @@ -82,7 +82,7 @@ with builtins; { serviceConfig = { Restart = "on-failure"; }; - path = [ pkgs.inotifyTools ]; + path = [ pkgs.inotify-tools ]; script = '' if [[ ! -e "${val.path}" ]]; then >&2 echo "${val.path} does not exist"