mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 07:31:26 +00:00
add fortune
svn path=/nixpkgs/trunk/; revision=33462
This commit is contained in:
parent
ec15b98631
commit
076946d277
20
pkgs/tools/misc/fortune/default.nix
Normal file
20
pkgs/tools/misc/fortune/default.nix
Normal 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.";
|
||||
};
|
||||
}
|
@ -694,6 +694,8 @@ let
|
||||
withX11 = true;
|
||||
};
|
||||
|
||||
fortune = callPackage ../tools/misc/fortune { };
|
||||
|
||||
freeipmi = callPackage ../tools/system/freeipmi {};
|
||||
|
||||
freetalk = callPackage ../applications/networking/instant-messengers/freetalk {
|
||||
|
Loading…
Reference in New Issue
Block a user