mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-10 03:23:29 +03:00
10 lines
219 B
Nix
10 lines
219 B
Nix
{ lib, pkgs }:
|
|
|
|
pkgs.replaceVarsWith {
|
|
src = ./extlinux-conf-builder.sh;
|
|
isExecutable = true;
|
|
replacements = {
|
|
path = lib.makeBinPath [pkgs.coreutils pkgs.gnused pkgs.gnugrep];
|
|
inherit (pkgs) bash;
|
|
};
|
|
}
|