nixpkgs/pkgs/games/angband/default.nix

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

38 lines
871 B
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub, autoreconfHook, ncurses5
, enableSdl2 ? false, SDL2, SDL2_image, SDL2_sound, SDL2_mixer, SDL2_ttf
}:
2016-04-30 11:50:50 +00:00
stdenv.mkDerivation rec {
pname = "angband";
2022-02-22 00:50:49 +00:00
version = "4.2.4";
2016-04-30 23:18:15 +00:00
2016-04-30 11:50:50 +00:00
src = fetchFromGitHub {
owner = "angband";
repo = "angband";
rev = version;
2022-02-22 00:50:49 +00:00
sha256 = "sha256-Fp3BGCZYYdQCKXOLYsT4zzlibNRlbELZi26ofrbGGPQ=";
2016-04-30 23:18:15 +00:00
};
2016-04-30 23:18:15 +00:00
nativeBuildInputs = [ autoreconfHook ];
buildInputs = [ ncurses5 ]
++ lib.optionals enableSdl2 [
SDL2
SDL2_image
SDL2_sound
SDL2_mixer
SDL2_ttf
];
configureFlags = lib.optional enableSdl2 "--enable-sdl2";
2019-11-05 01:10:31 +00:00
installFlags = [ "bindir=$(out)/bin" ];
2016-04-30 23:18:15 +00:00
meta = with lib; {
homepage = "https://angband.github.io/angband";
2016-04-30 23:18:15 +00:00
description = "A single-player roguelike dungeon exploration game";
2022-09-13 06:49:21 +00:00
maintainers = [ maintainers.kenran ];
2016-04-30 23:18:15 +00:00
license = licenses.gpl2;
2016-04-30 11:50:50 +00:00
};
}