nixpkgs/pkgs/games/flare/game.nix

24 lines
594 B
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub, cmake }:
2019-05-19 14:06:24 +02:00
stdenv.mkDerivation rec {
pname = "flare-game";
version = "1.13";
2019-05-19 14:06:24 +02:00
src = fetchFromGitHub {
owner = "flareteam";
repo = pname;
rev = "v${version}";
sha256 = "sha256-zfZTHw8obq5/z9+mCY0LIq9suvyh91ypqpxc3dNxI4o=";
2019-05-19 14:06:24 +02:00
};
nativeBuildInputs = [ cmake ];
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";
maintainers = with maintainers; [ aanderse McSinyx ];
2019-05-19 14:06:24 +02:00
license = [ licenses.cc-by-sa-30 ];
platforms = platforms.unix;
};
}