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