1{stdenv, fetchurl}:
2
3stdenv.mkDerivation {
4 name = "rman-3.2";
5
6 src = fetchurl {
7 url = mirror://sourceforge/polyglotman/3.2/rman-3.2.tar.gz;
8 sha256 = "0prdld6nbkdlkcgc2r1zp13h2fh8r0mlwxx423dnc695ddlk18b8";
9 };
10
11 makeFlags = "BINDIR=$(out)/bin MANDIR=$(out)/share/man";
12
13 preInstall = ''
14 mkdir -p $out/bin
15 mkdir -p $out/share/man
16 '';
17
18 hardeningDisable = [ "format" ];
19
20 meta = {
21 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";
22 license = "artistic";
23 platforms = stdenv.lib.platforms.linux;
24 };
25}