add fortune

svn path=/nixpkgs/trunk/; revision=33462
This commit is contained in:
Rob Vermaas 2012-03-29 07:15:40 +00:00
parent ec15b98631
commit 076946d277
2 changed files with 22 additions and 0 deletions

View file

@ -0,0 +1,20 @@
{ stdenv, fetchurl, recode }:
stdenv.mkDerivation {
name = "fortune-mod_1.99.1";
src = fetchurl {
url = http://ftp.de.debian.org/debian/pool/main/f/fortune-mod/fortune-mod_1.99.1.orig.tar.gz;
sha256 = "1kpa2hgbglj5dbfasvl9wc1q3xpl91mqn3sfby46r4rwyzhswlgw";
};
buildInputs = [recode];
preConfigure = ''
sed -i "s|/usr/|$out/|" Makefile
'';
postInstall = ''
ln -s $out/games/fortune $out/bin/fortune
'';
meta = {
description = "fortune is a simple program that displays a pseudorandom message from a database of quotations that first appeared in Version 7 Unix.";
};
}

View file

@ -694,6 +694,8 @@ let
withX11 = true;
};
fortune = callPackage ../tools/misc/fortune { };
freeipmi = callPackage ../tools/system/freeipmi {};
freetalk = callPackage ../applications/networking/instant-messengers/freetalk {