2021-01-11 07:54:33 +00:00
|
|
|
{ lib, stdenv, fetchFromGitHub, cmake }:
|
2019-05-19 12:06:24 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "flare-game";
|
2023-03-30 14:10:31 +00:00
|
|
|
version = "1.14";
|
2019-05-19 12:06:24 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "flareteam";
|
|
|
|
repo = pname;
|
|
|
|
rev = "v${version}";
|
2023-03-30 14:10:31 +00:00
|
|
|
hash = "sha256-tINIwxyQn8eeJCHwRmAMo2TYRgrgJlGaUrnrgbmM3Jo=";
|
2019-05-19 12:06:24 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = [ cmake ];
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2019-05-19 12:06:24 +00:00
|
|
|
description = "Fantasy action RPG using the FLARE engine";
|
|
|
|
homepage = "https://github.com/flareteam/flare-game";
|
2022-02-06 07:44:03 +00:00
|
|
|
maintainers = with maintainers; [ aanderse McSinyx ];
|
2019-05-19 12:06:24 +00:00
|
|
|
license = [ licenses.cc-by-sa-30 ];
|
|
|
|
platforms = platforms.unix;
|
|
|
|
};
|
|
|
|
}
|