about summary refs log tree commit diff
path: root/nixpkgs/pkgs/tools/typesetting/xmlroff/default.nix
blob: dd8adab9ee8a9442dbed6983599d0f1d5ca732d0 (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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
{ lib, stdenv, fetchFromGitHub
, autoreconfHook
, gtk2
, libxml2
, libxslt
, pango
, perl
, pkg-config
, popt
}:

stdenv.mkDerivation rec {
  pname = "xmlroff";
  version = "0.6.3";

  src = fetchFromGitHub {
    owner = pname;
    repo = pname;
    rev = "v${version}";
    sha256 = "0dgp72094lx9i9gvg21pp8ak7bg39707rdf6wz011p9s6n6lrq5g";
  };

  nativeBuildInputs = [ autoreconfHook pkg-config ];
  buildInputs = [
    libxml2
    libxslt
    pango
    gtk2
    popt
  ];

  sourceRoot = "${src.name}/xmlroff";

  enableParallelBuilding = true;

  configureScript = "./autogen.sh";

  configureFlags = [
    "--disable-gp"
  ];

  preBuild = ''
    substituteInPlace tools/insert-file-as-string.pl --replace "/usr/bin/perl" "${perl}/bin/perl"
    substituteInPlace Makefile --replace "docs" ""  # docs target wants to download from network
  '';

  meta = with lib; {
    description = "XSL Formatter";
    homepage = "http://xmlroff.org/";
    platforms = platforms.unix;
    license = licenses.bsd3;
  };
}