nixpkgs/pkgs/by-name/et/etlegacy/package.nix
Pol Dellaiera b3fd70b2d3
etlegacy: fix .desktop files
Fix an issue introduced in #296713
2024-04-07 09:52:04 +02:00

41 lines
1.2 KiB
Nix

{ lib
, symlinkJoin
, etlegacy-assets
, etlegacy-unwrapped
, makeBinaryWrapper
}:
symlinkJoin {
name = "etlegacy";
version = "2.82.0";
paths = [
etlegacy-assets
etlegacy-unwrapped
];
nativeBuildInputs = [
makeBinaryWrapper
];
postBuild = ''
makeWrapper $out/bin/etl.* $out/bin/etl \
--add-flags "+set fs_basepath ${placeholder "out"}/lib/etlegacy"
makeWrapper $out/bin/etlded.* $out/bin/etlded \
--add-flags "+set fs_basepath ${placeholder "out"}/lib/etlegacy"
'';
meta = {
description = "ET: Legacy is an open source project based on the code of Wolfenstein: Enemy Territory which was released in 2010 under the terms of the GPLv3 license";
homepage = "https://etlegacy.com";
license = with lib.licenses; [ gpl3Plus cc-by-nc-sa-30 ];
longDescription = ''
ET: Legacy, an open source project fully compatible client and server
for the popular online FPS game Wolfenstein: Enemy Territory - whose
gameplay is still considered unmatched by many, despite its great age.
'';
mainProgram = "etl";
maintainers = with lib.maintainers; [ ashleyghooper drupol ];
platforms = lib.platforms.linux;
};
}