forked from DGNum/liminix
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
This commit is contained in:
parent
ef707de8b1
commit
86f5c9b568
1 changed files with 2 additions and 1 deletions
|
@ -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";
|
||||
|
|
Loading…
Reference in a new issue