biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / tools / misc / rig / default.nix
blob45304f3e56f4d44a3799c8917d4aa3368dcee0e7
1 { lib, stdenv, fetchurl } :
3 stdenv.mkDerivation rec {
4   version = "1.11";
5   pname = "rig";
7   src = fetchurl {
8     url = "https://ayera.dl.sourceforge.net/project/rig/rig/${version}/rig-${version}.tar.gz";
9     sha256 = "1f3snysjqqlpk2kgvm5p2icrj4lsdymccmn3igkc2f60smqckgq0";
10   };
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++" ];
18   meta = {
19     homepage = "https://rig.sourceforge.net/";
20     description = "Random identity generator";
21     longDescription = ''
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.
28     '';
29     license = lib.licenses.gpl2Plus;
30     maintainers = with lib.maintainers; [ tomberek ];
31     platforms = with lib.platforms; all;
32     mainProgram = "rig";
33   };