From 86f5c9b568f6ef72e73563c42e782ca7df58448e Mon Sep 17 00:00:00 2001 From: Daniel Barlow Date: Sun, 4 Feb 2024 15:50:25 +0000 Subject: [PATCH] schnapps needs util-linux for mount specifically, it expects mount /dev/foo -o blah /dest to work, but busybox mount expects options to precede all the other command line args --- pkgs/schnapps/default.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pkgs/schnapps/default.nix b/pkgs/schnapps/default.nix index b5ac8be..f84f052 100644 --- a/pkgs/schnapps/default.nix +++ b/pkgs/schnapps/default.nix @@ -3,9 +3,10 @@ , fetchFromGitLab , makeWrapper , btrfs-progs +, util-linux-small , lib }: -let search_path = lib.makeBinPath [btrfs-progs]; +let search_path = lib.makeBinPath [btrfs-progs util-linux-small]; in stdenv.mkDerivation { pname = "schnapps"; version = "2.13.0";