mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-07 12:44:20 +00:00
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;
|
|
}
|