Files
nixpkgs/pkgs/by-name/et/etlegacy/package.nix
Pol Dellaiera 22b16b7a61 etlegacy: remove symlinks
This will facilitate the installation of both 32 and 64bits version of the game
2025-09-30 21:48:50 +02:00

49 lines
1.2 KiB
Nix

{
lib,
stdenv,
symlinkJoin,
etlegacy-assets,
etlegacy-unwrapped,
makeBinaryWrapper,
}:
symlinkJoin {
name = "etlegacy";
version = "2.83.2";
paths = [
etlegacy-assets
etlegacy-unwrapped
];
nativeBuildInputs = [
makeBinaryWrapper
];
postBuild = ''
wrapProgram $out/bin/etl.* \
--add-flags "+set fs_basepath ${placeholder "out"}/lib/etlegacy"
wrapProgram $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." + (if stdenv.hostPlatform.isi686 then "i386" else "x86_64");
maintainers = with lib.maintainers; [
ashleyghooper
];
platforms = lib.platforms.linux;
};
}