11 lines
227 B
Nix
11 lines
227 B
Nix
|
{stdenv, grub, diffutils, gnused, gnugrep}:
|
||
|
|
||
|
stdenv.mkDerivation {
|
||
|
name = grub.name;
|
||
|
|
||
|
builder = ./builder.sh;
|
||
|
makeWrapper = ../../../build-support/make-wrapper/make-wrapper.sh;
|
||
|
|
||
|
inherit grub diffutils gnused gnugrep;
|
||
|
}
|