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
39 lines
1.2 KiB
Nix
39 lines
1.2 KiB
Nix
{ lib, stdenv, fetchurl, warsow-engine, makeWrapper }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "warsow";
|
|
version = "2.1.2";
|
|
|
|
src = fetchurl {
|
|
url = "http://warsow.net/${pname}-${version}.tar.gz";
|
|
sha256 = "07y2airw5qg3s1bf1c63a6snjj22riz0mqhk62jmfm9nrarhavrc";
|
|
};
|
|
|
|
nativeBuildInputs = [ makeWrapper ];
|
|
|
|
installPhase = ''
|
|
mkdir -p $out/share/warsow
|
|
cp -r basewsw $out/share/warsow
|
|
ln -s ${warsow-engine}/lib/warsow $out/share/warsow/libs
|
|
|
|
mkdir -p $out/bin
|
|
for i in ${warsow-engine}/bin/*; do
|
|
makeWrapper "$i" "$out/bin/$(basename "$i")" --run "cd $out/share/warsow"
|
|
done
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Multiplayer FPS game designed for competitive gaming";
|
|
longDescription = ''
|
|
Set in a futuristic cartoon-like world where rocketlauncher-wielding
|
|
pigs and lasergun-carrying cyberpunks roam the streets, Warsow is a
|
|
completely free fast-paced first-person shooter (FPS) for Windows, Linux
|
|
and macOS.
|
|
'';
|
|
homepage = "http://www.warsow.net";
|
|
license = licenses.unfreeRedistributable;
|
|
maintainers = with maintainers; [ astsmtl abbradar ];
|
|
platforms = warsow-engine.meta.platforms;
|
|
};
|
|
}
|