nixpkgs/pkgs/development/tools/misc/rman/default.nix
2020-04-10 17:54:53 +01:00

33 lines
830 B
Nix

{stdenv, fetchurl}:
stdenv.mkDerivation {
name = "rman-3.2";
src = fetchurl {
url = "mirror://sourceforge/polyglotman/3.2/rman-3.2.tar.gz";
sha256 = "0prdld6nbkdlkcgc2r1zp13h2fh8r0mlwxx423dnc695ddlk18b8";
};
postPatch = ''
substituteInPlace Makefile \
--replace ginstall install
'';
makeFlags = [ "BINDIR=$(out)/bin" "MANDIR=$(out)/share/man" ];
preInstall = ''
mkdir -p $out/bin
mkdir -p $out/share/man
'';
hardeningDisable = [ "format" ];
doCheck = false; # "check" target is probably meant to do "installcheck" or something
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";
license = "artistic";
platforms = stdenv.lib.platforms.linux;
};
}