1 { lib, stdenv, fetchurl, ncurses, xmlto }:
4 stdenv.mkDerivation rec {
10 url = "http://www.catb.org/~esr/galaxis/${pname}-${version}.tar.gz";
11 sha256 = "1181x3z4r0794v2bkpigb5fablw1nayj42wvhy2am79p7j1iqq5r";
14 buildInputs = [ ncurses xmlto ];
18 -e 's|^install: galaxis\.6 uninstall|install: galaxis.6|'\
19 -e 's|usr/||g' -e 's|ROOT|DESTDIR|g'\
20 -e 's|install -m 755 -o 0 -g 0|install -m 755|' Makefile
25 makeFlags = [ "DESTDIR=$(out)" ];
28 description = "Rescue lifeboats lost in interstellar space";
30 Lifeboats from a crippled interstellar liner are adrift in a starfield. To
31 find them, you can place probes that look in all eight compass directions
32 and tell you how many lifeboats they see. If you drop a probe directly on
33 a lifeboat it will be revealed immediately. Your objective: find the
34 lifeboats as quickly as possible, before the stranded passengers run out
37 This is a UNIX-hosted, curses-based clone of the nifty little Macintosh
38 freeware game Galaxis. It doesn't have the super-simple, point-and-click
39 interface of the original, but compensates by automating away some of the
40 game's simpler deductions.
42 homepage = "http://catb.org/~esr/galaxis/";
43 license = licenses.gpl2;
44 maintainers = [ maintainers.AndersonTorres ];
45 platforms = platforms.linux;