mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
24 lines
584 B
Nix
24 lines
584 B
Nix
{ lib, stdenv, fetchFromGitHub, cmake }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "flare-game";
|
|
version = "1.12rc1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "flareteam";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
sha256 = "1i2fa2hds5ph8gf5b9647vrn7ycz2fl9xaaaybz8yrjmnpx27bzc";
|
|
};
|
|
|
|
nativeBuildInputs = [ cmake ];
|
|
|
|
meta = with lib; {
|
|
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;
|
|
};
|
|
}
|