1
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs synced 2024-10-22 16:26:48 -04:00
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;
};
}