e0758ef36a
svn path=/nixpkgs/trunk/; revision=6062
11 lines
248 B
Nix
11 lines
248 B
Nix
{stdenv, grub, diffutils, gnused, gnugrep, coreutils}:
|
|
|
|
stdenv.mkDerivation {
|
|
name = grub.name;
|
|
|
|
builder = ./builder.sh;
|
|
makeWrapper = ../../../build-support/make-wrapper/make-wrapper.sh;
|
|
|
|
inherit grub diffutils gnused gnugrep coreutils;
|
|
}
|