mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 16:33:15 +00:00
talkfilters: disable format hardening
This commit is contained in:
parent
4f6bd094fb
commit
552a8c4219
@ -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;
|
||||||
|
Loading…
Reference in New Issue
Block a user