talkfilters: disable format hardening

This commit is contained in:
Robin Gloster 2016-08-03 20:28:05 +00:00
parent 4f6bd094fb
commit 552a8c4219

View File

@ -1,21 +1,23 @@
{ stdenv, fetchurl }: { stdenv, fetchurl }:
let let
name = "talkfilters"; pname = "talkfilters";
version = "2.3.8"; version = "2.3.8";
in in
stdenv.mkDerivation { stdenv.mkDerivation {
name = "${name}"; name = "${pname}-${version}";
src = fetchurl { src = fetchurl {
url = "http://www.hyperrealm.com/${name}/${name}-${version}.tar.gz"; url = "http://www.hyperrealm.com/${pname}/${pname}-${version}.tar.gz";
sha256 = "19nc5vq4bnkjvhk8srqddzhcs93jyvpm9r6lzjzwc1mgf08yg0a6"; sha256 = "19nc5vq4bnkjvhk8srqddzhcs93jyvpm9r6lzjzwc1mgf08yg0a6";
}; };
meta = { hardeningDisable = [ "format" ];
meta = {
description = "Converts English text into text that mimics a stereotyped or humorous dialect"; description = "Converts English text into text that mimics a stereotyped or humorous dialect";
homepage = "http://http://www.hyperrealm.com/${name}"; homepage = "http://http://www.hyperrealm.com/${pname}";
license = stdenv.lib.licenses.gpl2; license = stdenv.lib.licenses.gpl2;
maintainers = with stdenv.lib.maintainers; [ ikervagyok ]; maintainers = with stdenv.lib.maintainers; [ ikervagyok ];
platforms = with stdenv.lib.platforms; unix; platforms = with stdenv.lib.platforms; unix;