nixpkgs/pkgs/tools/misc/grub-wrapper/default.nix

11 lines
227 B
Nix
Raw Normal View History

{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;
}