wargus: init at 2.4.3
This commit is contained in:
@@ -0,0 +1,39 @@
|
||||
{ stdenv, lib, callPackage, fetchFromGitHub
|
||||
, cmake, pkg-config, makeWrapper
|
||||
, zlib, bzip2, libpng
|
||||
, dialog, python3, cdparanoia
|
||||
}:
|
||||
|
||||
let
|
||||
stratagus = callPackage ./stratagus.nix {};
|
||||
in
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "wargus";
|
||||
inherit (stratagus) version;
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "wargus";
|
||||
repo = "wargus";
|
||||
rev = "v${version}";
|
||||
sha256 = "0dibm68jxaqzgzcyblfj2bmwyz9v5ax0njnnbvak7xjk1zlh11sx";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ cmake pkg-config makeWrapper ];
|
||||
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" cdparanoia python3 ]}
|
||||
'';
|
||||
|
||||
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;
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user