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
mainline-omnia-wip
Daniel Barlow 2024-02-04 15:50:25 +00:00
parent ef707de8b1
commit 86f5c9b568
1 changed files with 2 additions and 1 deletions

View File

@ -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";