1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-25 03:17:13 +00:00
nixpkgs/pkgs/games/flare/game.nix

24 lines
584 B
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub, cmake }:
2019-05-19 13:06:24 +01:00
stdenv.mkDerivation rec {
pname = "flare-game";
2021-07-15 09:11:37 +01:00
version = "1.12rc2";
2019-05-19 13:06:24 +01:00
src = fetchFromGitHub {
owner = "flareteam";
repo = pname;
rev = "v${version}";
2021-07-15 09:11:37 +01:00
sha256 = "0k9fnbaqfgmih8bd0sh3kbk6f6v74i95wrbkij48gp48pq8yqbf9";
2019-05-19 13:06:24 +01:00
};
nativeBuildInputs = [ cmake ];
meta = with lib; {
2019-05-19 13:06:24 +01:00
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;
};
}