Adding bsdgames and miscfiles (this later, for 'words')

I could not easily make some bsdgames build or install. Too much patching
against the installer trying to write beyond the nix store.

svn path=/nixpkgs/trunk/; revision=17971
This commit is contained in:
Lluís Batlle i Rossell 2009-10-26 23:03:36 +00:00
parent 26d2ee22e2
commit 0c4c01f6c9
3 changed files with 71 additions and 0 deletions

View file

@ -0,0 +1,16 @@
{stdenv, fetchurl}:
stdenv.mkDerivation rec {
name = "miscfiles-1.4.2";
src = fetchurl {
url = "mirror://gnu/miscfiles/${name}.tar.gz";
sha256 = "1rh10y63asyrqyp5mlmxy7y4kdp6svk2inws3y7mfx8lsrhcm6dn";
};
meta = {
homepage = http://www.gnu.org/software/miscfiles/;
license = "GPLv2+";
description = "Collection of files not of crucial importance for sysadmins";
};
}

View file

@ -0,0 +1,47 @@
{stdenv, fetchurl, ncurses, openssl, flex, bison, miscfiles}:
stdenv.mkDerivation {
name = "bsd-games-2.17";
src = fetchurl {
url = ftp://metalab.unc.edu/pub/Linux/games/bsd-games-2.17.tar.gz;
sha256 = "0q7zdyyfvn15y0w4g54kq3gza89h61py727m8slmw73cxx594vq6";
};
buildInputs = [ ncurses openssl flex bison ];
preConfigure = ''
cat > config.params << EOF
bsd_games_cfg_man6dir=$out/share/man/man6
bsd_games_cfg_man8dir=$out/share/man/man8
bsd_games_cfg_man5dir=$out/share/man/man5
bsd_games_cfg_wtf_acronymfile=$out/share/misc/acronyms
bsd_games_cfg_fortune_dir=$out/share/games/fortune
bsd_games_cfg_quiz_dir=$out/share/games/quiz
bsd_games_cfg_gamesdir=$out/bin
bsd_games_cfg_non_interactive=y
bsd_games_cfg_no_build_dirs="dab hack phantasia sail"
bsd_games_cfg_dictionary_src=${miscfiles}/share/dict/words
EOF
'';
postConfigure = ''
sed -i -e 's,/usr,'$out, \
-e "s,-o root -g root, ," \
-e "s,-o root -g games, ," \
-e "s,.*chown.*,true," \
-e 's/INSTALL_VARDATA.*/INSTALL_VARDATA := true/' \
-e 's/INSTALL_HACKDIR.*/INSTALL_HACKDIR := true/' \
-e 's/INSTALL_DM.*/INSTALL_DM := true/' \
-e 's/INSTALL_SCORE_FILE.*/INSTALL_SCORE_FILE := true/' \
Makeconfig install-man
'';
meta = {
homepage = "http://www.t2-project.org/packages/bsd-games.html";
description = "Ports of all the games from NetBSD-current that are free";
license = "free";
maintainers = with stdenv.lib.maintainers; [viric];
platforms = with stdenv.lib.platforms; linux;
};
}

View file

@ -6301,6 +6301,10 @@ let
inherit fetchurl stdenv;
};
miscfiles = import ../data/misc/miscfiles {
inherit fetchurl stdenv;
};
mph_2b_damase = import ../data/fonts/mph-2b-damase {
inherit fetchurl stdenv unzip;
};
@ -8134,6 +8138,10 @@ let
inherit fetchurl stdenv SDL SDL_image SDL_mixer SDL_ttf guile gettext;
};
bsdgames = import ../games/bsdgames {
inherit fetchurl stdenv ncurses openssl flex bison miscfiles;
};
castleCombat = import ../games/castle-combat {
inherit fetchurl stdenv python pygame twisted lib numeric makeWrapper;
};