2019-08-03 13:12:24 +01:00
|
|
|
{ lib, buildEnv, callPackage, makeWrapper, Cocoa }:
|
2019-05-19 13:06:24 +01:00
|
|
|
|
|
|
|
buildEnv {
|
2019-08-03 12:11:47 +01:00
|
|
|
name = "flare-1.11";
|
2019-05-19 13:06:24 +01:00
|
|
|
|
|
|
|
paths = [
|
2019-08-03 13:12:24 +01:00
|
|
|
(callPackage ./engine.nix { inherit Cocoa; })
|
2019-05-19 13:06:24 +01:00
|
|
|
(callPackage ./game.nix {})
|
|
|
|
];
|
|
|
|
|
|
|
|
buildInputs = [ makeWrapper ];
|
|
|
|
postBuild = ''
|
|
|
|
mkdir -p $out/bin
|
|
|
|
makeWrapper $out/games/flare $out/bin/flare --run "cd $out/share/games/flare"
|
|
|
|
'';
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "Fantasy action RPG using the FLARE engine";
|
2019-12-08 16:50:31 +00:00
|
|
|
homepage = "https://flarerpg.org/";
|
2019-05-19 13:06:24 +01:00
|
|
|
maintainers = [ maintainers.aanderse ];
|
|
|
|
license = [ licenses.gpl3 licenses.cc-by-sa-30 ];
|
|
|
|
platforms = platforms.unix;
|
|
|
|
};
|
|
|
|
}
|