lol

rman: add expression

+19
+19
pkgs/development/tools/misc/rman/default.nix
··· 1 + {stdenv, fetchurl}: 2 + 3 + stdenv.mkDerivation { 4 + name = "rman-3.2"; 5 + src = fetchurl { 6 + url = mirror://sourceforge/polyglotman/3.2/rman-3.2.tar.gz; 7 + sha256 = "0prdld6nbkdlkcgc2r1zp13h2fh8r0mlwxx423dnc695ddlk18b8"; 8 + }; 9 + makeFlags = "BINDIR=$(out)/bin MANDIR=$(out)/share/man"; 10 + preInstall = '' 11 + mkdir -p $out/bin 12 + mkdir -p $out/share/man 13 + ''; 14 + 15 + meta = { 16 + 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"; 17 + license = "artistic"; 18 + }; 19 + }