fix: add util-linux for uuidgen

This commit is contained in:
Moritz Böhme 2025-02-13 13:19:54 +01:00
parent ebe7b2846c
commit 4d1a69f2e3
Signed by: moritz
GPG key ID: 970C6E89EB0547A9

View file

@ -1,9 +1,9 @@
{ writeShellApplication, coreutils, openssh }: { writeShellApplication, coreutils, openssh, util-linux }:
writeShellApplication { writeShellApplication {
name = "rm-sync"; name = "rm-sync";
runtimeInputs = [ coreutils openssh ]; runtimeInputs = [ coreutils openssh util-linux ];
text = builtins.readFile ./rm-sync.sh; text = builtins.readFile ./rm-sync.sh;
} }