nixpkgs/pkgs/games/flare/game.nix
2023-03-30 23:10:31 +09:00

24 lines
592 B
Nix

{ lib, stdenv, fetchFromGitHub, cmake }:
stdenv.mkDerivation rec {
pname = "flare-game";
version = "1.14";
src = fetchFromGitHub {
owner = "flareteam";
repo = pname;
rev = "v${version}";
hash = "sha256-tINIwxyQn8eeJCHwRmAMo2TYRgrgJlGaUrnrgbmM3Jo=";
};
nativeBuildInputs = [ cmake ];
meta = with lib; {
description = "Fantasy action RPG using the FLARE engine";
homepage = "https://github.com/flareteam/flare-game";
maintainers = with maintainers; [ aanderse McSinyx ];
license = [ licenses.cc-by-sa-30 ];
platforms = platforms.unix;
};
}