makeInitrd{,NG}: fix lz4 executable path
pkgs.lz4 has "dev" listed first in its outputs, so the substituted executable path didn't exist.
This commit is contained in:
@@ -29,7 +29,7 @@ rec {
|
||||
extension = ".lzma";
|
||||
};
|
||||
lz4 = {
|
||||
executable = pkgs: "${pkgs.lz4}/bin/lz4";
|
||||
executable = pkgs: pkgs.lib.getExe pkgs.lz4;
|
||||
defaultArgs = [ "-l" ];
|
||||
extension = ".lz4";
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user