nixpkgs/pkgs/by-name/et/etlegacy/package.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

43 lines
1.2 KiB
Nix
Raw Normal View History

2023-08-19 23:30:28 +03:00
{ lib
, symlinkJoin
, etlegacy-assets
, etlegacy-unwrapped
2024-03-17 20:40:30 +03:00
, makeBinaryWrapper
2023-08-19 23:30:28 +03:00
}:
symlinkJoin {
name = "etlegacy";
2024-04-21 21:12:44 +03:00
version = "2.82.1";
paths = [
etlegacy-assets
etlegacy-unwrapped
];
2023-08-19 23:30:28 +03:00
nativeBuildInputs = [
2024-03-17 20:40:30 +03:00
makeBinaryWrapper
2023-08-19 23:30:28 +03:00
];
postBuild = ''
2024-04-09 23:47:07 +03:00
wrapProgram $out/bin/etl.* \
--add-flags "+set fs_basepath ${placeholder "out"}/lib/etlegacy"
2024-04-09 23:47:07 +03:00
wrapProgram $out/bin/etlded.* \
--add-flags "+set fs_basepath ${placeholder "out"}/lib/etlegacy"
2024-04-09 23:47:07 +03:00
makeWrapper $out/bin/etl.* $out/bin/etl
makeWrapper $out/bin/etlded.* $out/bin/etlded
2023-08-19 23:30:28 +03:00
'';
2023-08-19 23:30:28 +03:00
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 ];
2023-08-19 23:30:28 +03:00
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;
};
}