nixpkgs/pkgs/games/quake3/wrapper/default.nix

16 lines
256 B
Nix
Raw Normal View History

{stdenv, fetchurl, game, paks, mesa, name, description, makeWrapper}:
stdenv.mkDerivation {
builder = ./builder.sh;
buildInputs = [makeWrapper];
inherit game paks mesa name;
gcc = stdenv.gcc.gcc;
meta = {
inherit description;
};
}