64 lines
2.1 KiB
Nix
64 lines
2.1 KiB
Nix
{ stdenv, lib, callPackage, fetchFromGitHub
|
|
, fetchurl, runCommand, unzip, bchunk, p7zip
|
|
, cmake, pkg-config, makeWrapper
|
|
, zlib, bzip2, libpng
|
|
, dialog, python3, cdparanoia, ffmpeg
|
|
}:
|
|
|
|
let
|
|
stratagus = callPackage ./stratagus.nix {};
|
|
|
|
dataDownload = fetchurl {
|
|
url = "https://archive.org/download/warcraft-ii-tides-of-darkness_202105/Warcess.zip";
|
|
sha256 = "0yxgvf8xpv1w2bjmny4a38pa3xcdgqckk9abj21ilkc5zqzqmm9b";
|
|
};
|
|
|
|
data = runCommand "warcraft2" {
|
|
buildInputs = [ unzip bchunk p7zip ];
|
|
meta.license = lib.licenses.unfree;
|
|
} ''
|
|
unzip ${dataDownload} "Warcraft.II.Tides.of.Darkness/Warcraft II - Tides of Darkness (1995)/games/WarcrafD/cd/"{WC2BTDP.img,WC2BTDP.cue}
|
|
bchunk "Warcraft.II.Tides.of.Darkness/Warcraft II - Tides of Darkness (1995)/games/WarcrafD/cd/"{WC2BTDP.img,WC2BTDP.cue} WC2BTDP
|
|
rm -r Warcraft.II.Tides.of.Darkness
|
|
7z x WC2BTDP01.iso
|
|
rm WC2BTDP*.{iso,cdr}
|
|
cp -r DATA $out
|
|
'';
|
|
|
|
in
|
|
stdenv.mkDerivation rec {
|
|
pname = "wargus";
|
|
inherit (stratagus) version;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "wargus";
|
|
repo = "wargus";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-yJeMFxCD0ikwVPQApf+IBuMQ6eOjn1fVKNmqh6r760c=";
|
|
};
|
|
|
|
nativeBuildInputs = [ cmake pkg-config makeWrapper ffmpeg ];
|
|
buildInputs = [ zlib bzip2 libpng ];
|
|
cmakeFlags = [
|
|
"-DSTRATAGUS=${stratagus}/games/stratagus"
|
|
"-DSTRATAGUS_INCLUDE_DIR=${stratagus.src}/gameheaders"
|
|
];
|
|
postInstall = ''
|
|
makeWrapper $out/games/wargus $out/bin/wargus \
|
|
--prefix PATH : ${lib.makeBinPath [ "$out" ]}
|
|
substituteInPlace $out/share/applications/wargus.desktop \
|
|
--replace $out/games/wargus $out/bin/wargus
|
|
|
|
$out/bin/wartool -v -r ${data} $out/share/games/stratagus/wargus
|
|
ln -s $out/share/games/stratagus/wargus/{contrib/black_title.png,graphics/ui/black_title.png}
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Importer and scripts for Warcraft II: Tides of Darkness, the expansion Beyond the Dark Portal, and Aleonas Tales";
|
|
homepage = "https://wargus.github.io/";
|
|
license = licenses.gpl2Only;
|
|
maintainers = [ maintainers.astro ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|