taradino{,-shareware}: init at 20251031 (#436275)
This commit is contained in:
@@ -0,0 +1 @@
|
||||
{ taradino }: taradino.override { buildShareware = true; }
|
||||
@@ -0,0 +1,71 @@
|
||||
{
|
||||
lib,
|
||||
stdenv,
|
||||
fetchFromGitHub,
|
||||
fetchzip,
|
||||
ninja,
|
||||
cmake,
|
||||
SDL2,
|
||||
SDL2_mixer,
|
||||
unzip,
|
||||
buildShareware ? false,
|
||||
withSharewareData ? buildShareware,
|
||||
}:
|
||||
assert withSharewareData -> buildShareware;
|
||||
|
||||
let
|
||||
datadir = "share/data/rott-shareware/";
|
||||
sharewareData = fetchzip {
|
||||
url = "http://icculus.org/rott/share/1rott13.zip";
|
||||
hash = "sha256-l0pP+mNPAabGh7LZrwcB6KOhPRSycrZpAlPVTyDXc6Y=";
|
||||
stripRoot = false;
|
||||
};
|
||||
in
|
||||
stdenv.mkDerivation (finalAttrs: {
|
||||
pname = "taradino" + lib.optionalString buildShareware "-shareware";
|
||||
version = "20251031";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "fabiangreffrath";
|
||||
repo = "taradino";
|
||||
tag = finalAttrs.version;
|
||||
hash = "sha256-Z3yAT4CxZIQ63F6G7ZUAdz2VK+8dcv6WHyQJ8Pmz4Zk=";
|
||||
};
|
||||
|
||||
strictDeps = true;
|
||||
nativeBuildInputs = [
|
||||
cmake
|
||||
ninja
|
||||
]
|
||||
++ lib.optionals withSharewareData [ unzip ];
|
||||
|
||||
buildInputs = [
|
||||
SDL2
|
||||
SDL2_mixer
|
||||
];
|
||||
|
||||
cmakeFlags =
|
||||
lib.optionals buildShareware [
|
||||
(lib.cmakeBool "TARADINO_SHAREWARE" true)
|
||||
(lib.cmakeFeature "TARADINO_SUFFIX" "shareware")
|
||||
]
|
||||
++ lib.optionals withSharewareData [
|
||||
(lib.cmakeFeature "TARADINO_DATADIR" "${placeholder "out"}/${datadir}")
|
||||
];
|
||||
|
||||
postInstall = lib.optionalString withSharewareData ''
|
||||
mkdir -p "$out/${datadir}"
|
||||
unzip -d "$out/${datadir}" ${sharewareData}/ROTTSW13.SHR
|
||||
'';
|
||||
|
||||
meta = {
|
||||
description = "SDL2 port of Rise of the Triad";
|
||||
mainProgram = "taradino" + lib.optionalString buildShareware "-shareware";
|
||||
homepage = "https://github.com/fabiangreffrath/taradino";
|
||||
license =
|
||||
with lib.licenses;
|
||||
[ gpl2Plus ] ++ lib.optionals withSharewareData [ unfreeRedistributable ];
|
||||
maintainers = with lib.maintainers; [ marcin-serwin ];
|
||||
platforms = lib.platforms.all;
|
||||
};
|
||||
})
|
||||
Reference in New Issue
Block a user