summary refs log tree commit diff
path: root/pkgs/misc/talkfilters/default.nix
blob: a622eca7795b9096c799c8b355b45aef32538588 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
{ stdenv, fetchurl }:

let
  pname = "talkfilters";
  version = "2.3.8";
in

stdenv.mkDerivation {
  name = "${pname}-${version}";

  src = fetchurl {
    url = "http://www.hyperrealm.com/${pname}/${pname}-${version}.tar.gz";
    sha256 = "19nc5vq4bnkjvhk8srqddzhcs93jyvpm9r6lzjzwc1mgf08yg0a6";
  };

  hardeningDisable = [ "format" ];

  meta = {
    description = "Converts English text into text that mimics a stereotyped or humorous dialect";
    homepage = "http://www.hyperrealm.com/talkfilters/talkfilters.html";
    license = stdenv.lib.licenses.gpl2;
    maintainers = with stdenv.lib.maintainers; [ ikervagyok ];
    platforms = with stdenv.lib.platforms; unix;
  };
}