nixpkgs/pkgs/games/flare/engine.nix

26 lines
719 B
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub, cmake, SDL2, SDL2_image, SDL2_mixer, SDL2_ttf, Cocoa }:
2019-05-19 12:06:24 +00:00
stdenv.mkDerivation rec {
pname = "flare-engine";
2019-08-03 11:11:47 +00:00
version = "1.11";
2019-05-19 12:06:24 +00:00
src = fetchFromGitHub {
owner = "flareteam";
repo = pname;
rev = "v${version}";
2019-08-03 11:11:47 +00:00
sha256 = "1j6raymz128miq517h9drks4gj79dajw3lsr0msqxz0z3zm6cc4n";
2019-05-19 12:06:24 +00:00
};
nativeBuildInputs = [ cmake ];
2019-08-03 12:12:24 +00:00
buildInputs = [ SDL2 SDL2_image SDL2_mixer SDL2_ttf ]
2021-01-15 04:31:39 +00:00
++ lib.optional stdenv.isDarwin Cocoa;
2019-05-19 12:06:24 +00:00
meta = with lib; {
2019-05-19 12:06:24 +00:00
description = "Free/Libre Action Roleplaying Engine";
homepage = "https://github.com/flareteam/flare-engine";
maintainers = [ maintainers.aanderse ];
license = [ licenses.gpl3 ];
platforms = platforms.unix;
};
}