nixpkgs/pkgs/tools/misc/fortune/default.nix

32 lines
766 B
Nix
Raw Normal View History

{ 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
'';
2015-01-29 18:14:49 +00:00
preBuild = ''
makeFlagsArray=("CC=$CC" "REGEXDEFS=-DHAVE_REGEX_H -DPOSIX_REGEX" "LDFLAGS=")
'';
postInstall = ''
mv $out/games/fortune $out/bin/fortune
rmdir $out/games
'';
2018-08-16 19:55:12 +00:00
meta = with stdenv.lib; {
description = "A program that displays a pseudorandom message from a database of quotations";
2018-08-16 19:55:12 +00:00
license = licenses.bsdOriginal;
platforms = platforms.unix;
};
}