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
64 lines
2.0 KiB
Nix
64 lines
2.0 KiB
Nix
{ lib, stdenv, fetchFromGitHub, makeDesktopItem, makeWrapper, cmake, libjpeg, zlib, libpng, libGL, SDL2 }:
|
|
|
|
let
|
|
jamp = makeDesktopItem rec {
|
|
name = "jamp";
|
|
exec = name;
|
|
icon = "OpenJK_Icon_128";
|
|
comment = "Open Source Jedi Academy game released by Raven Software";
|
|
desktopName = "Jedi Academy (Multi Player)";
|
|
genericName = "Jedi Academy";
|
|
categories = "Game;";
|
|
};
|
|
jasp = makeDesktopItem rec {
|
|
name = "jasp";
|
|
exec = name;
|
|
icon = "OpenJK_Icon_128";
|
|
comment = "Open Source Jedi Academy game released by Raven Software";
|
|
desktopName = "Jedi Academy (Single Player)";
|
|
genericName = "Jedi Academy";
|
|
categories = "Game;";
|
|
};
|
|
in stdenv.mkDerivation {
|
|
pname = "OpenJK";
|
|
version = "2020-07-03";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "JACoders";
|
|
repo = "OpenJK";
|
|
rev = "0a336ce4dffe6505e3f754b59732402a1db95752";
|
|
sha256 = "1xagbz42hi3ivs208mnay2dbgh90pmwwbar2p1yfhj3zl3cghcs8";
|
|
};
|
|
|
|
dontAddPrefix = true;
|
|
|
|
nativeBuildInputs = [ makeWrapper cmake ];
|
|
buildInputs = [ libjpeg zlib libpng libGL SDL2 ];
|
|
|
|
# move from $out/JediAcademy to $out/opt/JediAcademy
|
|
preConfigure = ''
|
|
cmakeFlagsArray=("-DCMAKE_INSTALL_PREFIX=$out/opt")
|
|
'';
|
|
|
|
postInstall = ''
|
|
mkdir -p $out/bin $out/share/applications $out/share/icons/hicolor/128x128/apps
|
|
prefix=$out/opt/JediAcademy
|
|
|
|
makeWrapper $prefix/openjk.* $out/bin/jamp --run "cd $prefix"
|
|
makeWrapper $prefix/openjk_sp.* $out/bin/jasp --run "cd $prefix"
|
|
makeWrapper $prefix/openjkded.* $out/bin/openjkded --run "cd $prefix"
|
|
|
|
cp $src/shared/icons/OpenJK_Icon_128.png $out/share/icons/hicolor/128x128/apps
|
|
ln -s ${jamp}/share/applications/* $out/share/applications
|
|
ln -s ${jasp}/share/applications/* $out/share/applications
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "An open-source engine for Star Wars Jedi Academy game";
|
|
homepage = "https://github.com/JACoders/OpenJK";
|
|
license = licenses.gpl2;
|
|
platforms = platforms.linux;
|
|
maintainers = with maintainers; [ gnidorah ];
|
|
};
|
|
}
|