nixpkgs/pkgs/games/flare/game.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

24 lines
592 B
Nix
Raw Normal View History

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