Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / games / flare / default.nix
blob45e1ee765426be548903904996d48f8430f73df6
1 { lib, buildEnv, callPackage, makeWrapper, Cocoa }:
3 buildEnv {
4   name = "flare-1.14";
6   paths = [
7     (callPackage ./engine.nix { inherit Cocoa; })
8     (callPackage ./game.nix {})
9   ];
11   nativeBuildInputs = [ makeWrapper ];
12   postBuild = ''
13     mkdir -p $out/bin
14     makeWrapper $out/games/flare $out/bin/flare --chdir "$out/share/games/flare"
15   '';
17   meta = with lib; {
18     description = "Fantasy action RPG using the FLARE engine";
19     homepage = "https://flarerpg.org/";
20     maintainers = with maintainers; [ aanderse McSinyx ];
21     license = [ licenses.gpl3 licenses.cc-by-sa-30 ];
22     platforms = platforms.unix;
23   };