tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
0
fork
atom
lol
0
fork
atom
overview
issues
pulls
pipelines
rman: add expression
Sander van der Burg
11 years ago
e612ea59
01945507
+19
1 changed file
expand all
collapse all
unified
split
pkgs
development
tools
misc
rman
default.nix
+19
pkgs/development/tools/misc/rman/default.nix
···
1
1
+
{stdenv, fetchurl}:
2
2
+
3
3
+
stdenv.mkDerivation {
4
4
+
name = "rman-3.2";
5
5
+
src = fetchurl {
6
6
+
url = mirror://sourceforge/polyglotman/3.2/rman-3.2.tar.gz;
7
7
+
sha256 = "0prdld6nbkdlkcgc2r1zp13h2fh8r0mlwxx423dnc695ddlk18b8";
8
8
+
};
9
9
+
makeFlags = "BINDIR=$(out)/bin MANDIR=$(out)/share/man";
10
10
+
preInstall = ''
11
11
+
mkdir -p $out/bin
12
12
+
mkdir -p $out/share/man
13
13
+
'';
14
14
+
15
15
+
meta = {
16
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
17
+
license = "artistic";
18
18
+
};
19
19
+
}