summary refs log tree commit diff
path: root/pkgs/misc/talkfilters/default.nix
blob: 7447620e71b6c39b88285cec092b89cbec295610 (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
{ stdenv, fetchurl }:

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

stdenv.mkDerivation {
  name = "${name}";

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

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