summary refs log tree commit diff
path: root/pkgs/development/tools/misc/yodl/default.nix
blob: f16c961f4cf418081ade956682a4f399d68a7a16 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
{ stdenv, fetchurl, perl, icmake }:

stdenv.mkDerivation rec {
  name = "yodl-${version}";
  version = "3.04.00";

  buildInputs = [ perl icmake ];

  src = fetchurl {
    url = "mirror://sourceforge/yodl/yodl_${version}.orig.tar.gz";
    sha256 = "14sqd03j3w9g5l5rkdnqyxv174yz38m39ycncx86bq86g63igcv6";
  };

  preConfigure = ''
    sed -i 's;/usr;;g' INSTALL.im
    substituteInPlace build --replace /usr/bin/icmake ${icmake}/bin/icmake
    substituteInPlace macros/rawmacros/startdoc.pl --replace /usr/bin/perl ${perl}/bin/perl
  '';

  buildPhase = ''
    ./build programs
    ./build man
    ./build macros
  '';

  installPhase = ''
    ./build install programs $out
    ./build install man $out
    ./build install macros $out
  '';

  meta = with stdenv.lib; {
    description = "A package that implements a pre-document language and tools to process it";
    homepage = http://yodl.sourceforge.net/;
    license = licenses.gpl3;
    maintainers = with maintainers; [ pSub ];
    platforms = platforms.linux;
  };
}