nixpkgs/pkgs/misc/talkfilters/default.nix
2021-01-16 17:58:11 +07:00

27 lines
664 B
Nix

{ lib, 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 = lib.licenses.gpl2;
maintainers = with lib.maintainers; [ ikervagyok ];
platforms = with lib.platforms; unix;
};
}