2021-01-15 22:18:51 +00:00
|
|
|
{ lib, stdenv, fetchFromGitHub, cmake }:
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "flare-game";
|
2021-07-16 19:40:57 +00:00
|
|
|
version = "1.12rc2";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "flareteam";
|
|
|
|
repo = pname;
|
|
|
|
rev = "v${version}";
|
2021-07-16 19:40:57 +00:00
|
|
|
sha256 = "0k9fnbaqfgmih8bd0sh3kbk6f6v74i95wrbkij48gp48pq8yqbf9";
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = [ cmake ];
|
|
|
|
|
2021-01-15 22:18:51 +00:00
|
|
|
meta = with lib; {
|
2020-04-24 23:36:52 +00:00
|
|
|
description = "Fantasy action RPG using the FLARE engine";
|
|
|
|
homepage = "https://github.com/flareteam/flare-game";
|
|
|
|
maintainers = [ maintainers.aanderse ];
|
|
|
|
license = [ licenses.cc-by-sa-30 ];
|
|
|
|
platforms = platforms.unix;
|
|
|
|
};
|
|
|
|
}
|