fork
Configure Feed
Select the types of activity you want to include in your feed.
lol
fork
Configure Feed
Select the types of activity you want to include in your feed.
1{stdenv, fetchurl, python}:
2
3stdenv.mkDerivation {
4 name = "doclifter-2.15";
5 src = fetchurl {
6 url = http://www.catb.org/~esr/doclifter/doclifter-2.15.tar.gz;
7 sha256 = "14k750bxp0kpnm130pp22vx3vmppfnzwisc042din1416ka07yv0";
8 };
9 buildInputs = [ python ];
10
11 makeFlags = "PREFIX=$(out)";
12
13 preInstall = ''
14 mkdir -p $out/bin
15 mkdir -p $out/share/man/man1
16 cp manlifter $out/bin
17 cp manlifter.1 $out/share/man/man1
18 '';
19
20 meta = {
21 description = "Lift documents in nroff markups to XML-DocBook";
22 homepage = http://www.catb.org/esr/doclifter;
23 license = "BSD";
24 platforms = stdenv.lib.platforms.unix;
25 };
26}