4a7f99d55d
Part of: https://github.com/NixOS/nixpkgs/issues/108938 meta = with stdenv.lib; is a widely used pattern. We want to slowly remove the `stdenv.lib` indirection and encourage people to use `lib` directly. Thus let’s start with the meta field. This used a rewriting script to mostly automatically replace all occurances of this pattern, and add the `lib` argument to the package header if it doesn’t exist yet. The script in its current form is available at https://cs.tvl.fyi/depot@2f807d7f141068d2d60676a89213eaa5353ca6e0/-/blob/users/Profpatsch/nixpkgs-rewriter/default.nix
53 lines
1.2 KiB
Nix
53 lines
1.2 KiB
Nix
{ lib, stdenv, fetchFromGitHub, opusfile, libogg, SDL2, openal, freetype
|
|
, libjpeg, curl, makeWrapper }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "iortcw-sp";
|
|
version = "1.51c";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "iortcw";
|
|
repo = "iortcw";
|
|
rev = version;
|
|
sha256 = "0g5wgqb1gm34pd05dj2i8nj3qhsz0831p3m7bsgxpjcg9c00jpyw";
|
|
};
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
sourceRoot = "source/SP";
|
|
|
|
makeFlags = [
|
|
"USE_INTERNAL_LIBS=0"
|
|
"COPYDIR=${placeholder "out"}/opt/iortcw"
|
|
"USE_OPENAL_DLOPEN=0"
|
|
"USE_CURL_DLOPEN=0"
|
|
];
|
|
|
|
installTargets = [ "copyfiles" ];
|
|
|
|
buildInputs = [
|
|
opusfile libogg SDL2 freetype libjpeg openal curl
|
|
];
|
|
nativeBuildInputs = [ makeWrapper ];
|
|
|
|
NIX_CFLAGS_COMPILE = [
|
|
"-I${SDL2.dev}/include/SDL2"
|
|
"-I${opusfile}/include/opus"
|
|
];
|
|
NIX_CFLAGS_LINK = [ "-lSDL2" ];
|
|
|
|
postInstall = ''
|
|
for i in `find $out/opt/iortcw -maxdepth 1 -type f -executable`; do
|
|
makeWrapper $i $out/bin/`basename $i` --run "cd $out/opt/iortcw"
|
|
done
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Single player version of game engine for Return to Castle Wolfenstein";
|
|
homepage = src.meta.homepage;
|
|
license = licenses.gpl3;
|
|
platforms = platforms.linux;
|
|
maintainers = with maintainers; [ gnidorah ];
|
|
};
|
|
}
|