1 { lib, stdenv, fetchurl } :
3 stdenv.mkDerivation rec {
8 url = "https://ayera.dl.sourceforge.net/project/rig/rig/${version}/rig-${version}.tar.gz";
9 sha256 = "1f3snysjqqlpk2kgvm5p2icrj4lsdymccmn3igkc2f60smqckgq0";
12 # Note: diff modified from Debian: Norbert Veber <nveber@debian.org>
13 # http://deb.debian.org/debian/pool/main/r/rig/rig_1.11-1.diff.gz
14 patches = [ ./rig_1.11-1.diff ];
16 makeFlags = [ "CXX=${stdenv.cc.targetPrefix}c++" ];
19 homepage = "https://rig.sourceforge.net/";
20 description = "Random identity generator";
22 RIG (Random Identity Generator) is a free replacement for a shareware
23 program out there called 'fake'. It generates random, yet real-looking,
24 personal data. It is useful if you need to feed a name to a Web site,
25 BBS, or real person, and are too lazy to think of one yourself. Also,
26 if the Web site/BBS/person you are giving the information to tries to
27 cross-check the city, state, zip, or area code, it will check out.
29 license = lib.licenses.gpl2Plus;
30 maintainers = with lib.maintainers; [ tomberek ];
31 platforms = with lib.platforms; all;