From 3f5a3593619a0c6a0042518d4e507ba0d0de7bd1 Mon Sep 17 00:00:00 2001 From: Simonas Kazlauskas Date: Fri, 24 Feb 2023 00:34:38 +0200 Subject: [PATCH] Make `ps` available to karaf --- openhab.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/openhab.nix b/openhab.nix index 4f8344e..2bf944f 100644 --- a/openhab.nix +++ b/openhab.nix @@ -6,6 +6,7 @@ jdk-openhab, lib, makeWrapper, + procps, stdenv, }: @@ -22,7 +23,7 @@ in stdenv.mkDerivation rec { nativeBuildInputs = [ makeWrapper ]; buildInputs = [ bash ]; outputs = [ "out" ]; - extraPath = lib.makeBinPath [ jdk-openhab gawk coreutils ]; + extraPath = lib.makeBinPath [ jdk-openhab gawk coreutils procps ]; wrappedExecutables = [ "start.sh" "start_debug.sh"