From 4d1a69f2e3af6ad58651b58e750546bfcadb64f9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Moritz=20B=C3=B6hme?= Date: Thu, 13 Feb 2025 13:19:54 +0100 Subject: [PATCH] fix: add util-linux for uuidgen --- default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/default.nix b/default.nix index 6e2097a..4158a39 100644 --- a/default.nix +++ b/default.nix @@ -1,9 +1,9 @@ -{ writeShellApplication, coreutils, openssh }: +{ writeShellApplication, coreutils, openssh, util-linux }: writeShellApplication { name = "rm-sync"; - runtimeInputs = [ coreutils openssh ]; + runtimeInputs = [ coreutils openssh util-linux ]; text = builtins.readFile ./rm-sync.sh; }