rman: disable format hardening

This commit is contained in:
Robin Gloster 2016-08-03 20:19:41 +00:00
parent bfa5a27ed9
commit a3a2d52595

View File

@ -2,16 +2,21 @@
stdenv.mkDerivation { stdenv.mkDerivation {
name = "rman-3.2"; name = "rman-3.2";
src = fetchurl { src = fetchurl {
url = mirror://sourceforge/polyglotman/3.2/rman-3.2.tar.gz; url = mirror://sourceforge/polyglotman/3.2/rman-3.2.tar.gz;
sha256 = "0prdld6nbkdlkcgc2r1zp13h2fh8r0mlwxx423dnc695ddlk18b8"; sha256 = "0prdld6nbkdlkcgc2r1zp13h2fh8r0mlwxx423dnc695ddlk18b8";
}; };
makeFlags = "BINDIR=$(out)/bin MANDIR=$(out)/share/man"; makeFlags = "BINDIR=$(out)/bin MANDIR=$(out)/share/man";
preInstall = '' preInstall = ''
mkdir -p $out/bin mkdir -p $out/bin
mkdir -p $out/share/man mkdir -p $out/share/man
''; '';
hardeningDisable = [ "format" ];
meta = { meta = {
description = "Parse formatted man pages and man page source from most flavors of UNIX and converts them to HTML, ASCII, TkMan, DocBook, and other formats"; description = "Parse formatted man pages and man page source from most flavors of UNIX and converts them to HTML, ASCII, TkMan, DocBook, and other formats";
license = "artistic"; license = "artistic";