1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-19 04:02:10 +00:00
nixpkgs/pkgs/games/quake3/wrapper/default.nix

16 lines
254 B
Nix

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