mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 15:11:35 +00:00
32 lines
615 B
Nix
32 lines
615 B
Nix
|
{ stdenv, lib, buildEnv, makeWrapper, yquake2 }:
|
||
|
|
||
|
{ games
|
||
|
, name
|
||
|
, description
|
||
|
}:
|
||
|
|
||
|
let
|
||
|
env = buildEnv {
|
||
|
name = "${name}-env";
|
||
|
paths = [ yquake2 ] ++ games;
|
||
|
};
|
||
|
|
||
|
in stdenv.mkDerivation {
|
||
|
inherit name;
|
||
|
|
||
|
nativeBuildInputs = [ makeWrapper ];
|
||
|
|
||
|
buildCommand = ''
|
||
|
mkdir -p $out/bin
|
||
|
'' + lib.concatMapStringsSep "\n" (game: ''
|
||
|
makeWrapper ${env}/bin/yquake2 $out/bin/yquake2-${game.title} \
|
||
|
--add-flags "+set game ${game.id}"
|
||
|
makeWrapper ${env}/bin/yq2ded $out/bin/yq2ded-${game.title} \
|
||
|
--add-flags "+set game ${game.id}"
|
||
|
'') games;
|
||
|
|
||
|
meta = {
|
||
|
inherit description;
|
||
|
};
|
||
|
}
|