nixpkgs/pkgs/games/angband/default.nix

25 lines
635 B
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub, autoreconfHook, ncurses5 }:
2016-04-30 11:50:50 +00:00
stdenv.mkDerivation rec {
pname = "angband";
version = "4.2.3";
2016-04-30 23:18:15 +00:00
2016-04-30 11:50:50 +00:00
src = fetchFromGitHub {
owner = "angband";
repo = "angband";
rev = version;
sha256 = "sha256-SFHAG74qJcV3E+jxPcOH2moW/kXhpwUwbGZVkNxqWd8=";
2016-04-30 23:18:15 +00:00
};
nativeBuildInputs = [ autoreconfHook ];
2017-01-13 17:11:01 +00:00
buildInputs = [ ncurses5 ];
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";
2017-01-13 17:11:01 +00:00
maintainers = [ maintainers.chattered ];
2016-04-30 23:18:15 +00:00
license = licenses.gpl2;
2016-04-30 11:50:50 +00:00
};
}