2019-08-03 12:12:24 +00:00
|
|
|
{ lib, buildEnv, callPackage, makeWrapper, Cocoa }:
|
2019-05-19 12:06:24 +00:00
|
|
|
|
|
|
|
buildEnv {
|
2022-02-10 15:45:00 +00:00
|
|
|
name = "flare-1.13.04";
|
2019-05-19 12:06:24 +00:00
|
|
|
|
|
|
|
paths = [
|
2019-08-03 12:12:24 +00:00
|
|
|
(callPackage ./engine.nix { inherit Cocoa; })
|
2019-05-19 12:06:24 +00:00
|
|
|
(callPackage ./game.nix {})
|
|
|
|
];
|
|
|
|
|
2021-07-12 19:55:53 +00:00
|
|
|
nativeBuildInputs = [ makeWrapper ];
|
2019-05-19 12:06:24 +00:00
|
|
|
postBuild = ''
|
|
|
|
mkdir -p $out/bin
|
2022-03-14 18:06:00 +00:00
|
|
|
makeWrapper $out/games/flare $out/bin/flare --chdir "$out/share/games/flare"
|
2019-05-19 12:06:24 +00:00
|
|
|
'';
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "Fantasy action RPG using the FLARE engine";
|
2019-12-08 16:50:31 +00:00
|
|
|
homepage = "https://flarerpg.org/";
|
2022-02-06 07:44:03 +00:00
|
|
|
maintainers = with maintainers; [ aanderse McSinyx ];
|
2019-05-19 12:06:24 +00:00
|
|
|
license = [ licenses.gpl3 licenses.cc-by-sa-30 ];
|
|
|
|
platforms = platforms.unix;
|
|
|
|
};
|
|
|
|
}
|