nixpkgs/pkgs/games/flare/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

26 lines
656 B
Nix
Raw Normal View History

2019-08-03 12:12:24 +00:00
{ lib, buildEnv, callPackage, makeWrapper, Cocoa }:
2019-05-19 12:06:24 +00:00
buildEnv {
2023-03-30 14:10:31 +00:00
name = "flare-1.14";
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 {})
];
nativeBuildInputs = [ makeWrapper ];
2019-05-19 12:06:24 +00:00
postBuild = ''
mkdir -p $out/bin
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";
mainProgram = "flare";
homepage = "https://flarerpg.org/";
maintainers = with maintainers; [ aanderse McSinyx ];
2019-05-19 12:06:24 +00:00
license = [ licenses.gpl3 licenses.cc-by-sa-30 ];
platforms = platforms.unix;
};
}