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