nixpkgs/pkgs/misc/talkfilters/default.nix

27 lines
664 B
Nix
Raw Normal View History

2021-01-15 13:21:58 +00:00
{ lib, stdenv, fetchurl }:
2015-05-31 20:49:15 +00:00
2016-08-03 20:28:05 +00:00
let
pname = "talkfilters";
2015-05-31 20:49:15 +00:00
version = "2.3.8";
in
stdenv.mkDerivation {
2016-08-03 20:28:05 +00:00
name = "${pname}-${version}";
2015-05-31 20:49:15 +00:00
src = fetchurl {
2016-08-03 20:28:05 +00:00
url = "http://www.hyperrealm.com/${pname}/${pname}-${version}.tar.gz";
2015-05-31 20:49:15 +00:00
sha256 = "19nc5vq4bnkjvhk8srqddzhcs93jyvpm9r6lzjzwc1mgf08yg0a6";
};
2016-08-03 20:28:05 +00:00
hardeningDisable = [ "format" ];
meta = {
2015-05-31 20:49:15 +00:00
description = "Converts English text into text that mimics a stereotyped or humorous dialect";
homepage = "http://www.hyperrealm.com/talkfilters/talkfilters.html";
2021-01-15 13:21:58 +00:00
license = lib.licenses.gpl2;
maintainers = with lib.maintainers; [ ikervagyok ];
platforms = with lib.platforms; unix;
2015-05-31 20:49:15 +00:00
};
}