nixpkgs/pkgs/games/vms-empire/default.nix

41 lines
1.2 KiB
Nix
Raw Normal View History

2021-01-15 04:31:39 +00:00
{ lib, stdenv, fetchurl, ncurses, xmlto }:
2017-05-21 21:56:02 +00:00
stdenv.mkDerivation rec {
pname = "vms-empire";
2020-02-10 16:19:20 +00:00
version = "1.15";
2017-05-21 21:56:02 +00:00
src = fetchurl{
url = "http://www.catb.org/~esr/vms-empire/${pname}-${version}.tar.gz";
2020-02-10 16:19:20 +00:00
sha256 = "1vcpglkimcljb8s1dp6lzr5a0vbfxmh6xf37cmb8rf9wc3pghgn3";
2017-05-21 21:56:02 +00:00
};
buildInputs =
[ ncurses xmlto ];
patchPhase = ''
sed -i -e 's|^install: empire\.6 uninstall|install: empire.6|' -e 's|usr/||g' Makefile
'';
hardeningDisable = [ "format" ];
makeFlags = [ "DESTDIR=$(out)" ];
2021-01-15 04:31:39 +00:00
meta = with lib; {
2017-05-21 21:56:02 +00:00
description = "The ancestor of all expand/explore/exploit/exterminate games";
longDescription = ''
Empire is a simulation of a full-scale war between two emperors, the
computer and you. Naturally, there is only room for one, so the object of
the game is to destroy the other. The computer plays by the same rules
that you do. This game was ancestral to all later
expand/explore/exploit/exterminate games, including Civilization and
Master of Orion.
'';
homepage = "http://catb.org/~esr/vms-empire/";
2017-05-21 21:56:02 +00:00
license = licenses.gpl2;
maintainers = [ maintainers.AndersonTorres ];
platforms = platforms.linux;
};
}