summary refs log tree commit diff
path: root/pkgs/tools/typesetting
diff options
context:
space:
mode:
authorJonathan Ringer <jonringer117@gmail.com>2019-09-05 14:04:20 -0700
committerJonathan Ringer <jonringer117@gmail.com>2019-09-05 23:59:03 -0700
commit34c089e7ce9647ddba1b557c3c2bdb09930ac2d8 (patch)
treec79c61340b5c39ff0cc89106e67315e763c5e145 /pkgs/tools/typesetting
parent0213ccf6243a63c34b72e6a2ef4d9140a4d86540 (diff)
downloadnixpkgs-34c089e7ce9647ddba1b557c3c2bdb09930ac2d8.tar
nixpkgs-34c089e7ce9647ddba1b557c3c2bdb09930ac2d8.tar.gz
nixpkgs-34c089e7ce9647ddba1b557c3c2bdb09930ac2d8.tar.bz2
nixpkgs-34c089e7ce9647ddba1b557c3c2bdb09930ac2d8.tar.lz
nixpkgs-34c089e7ce9647ddba1b557c3c2bdb09930ac2d8.tar.xz
nixpkgs-34c089e7ce9647ddba1b557c3c2bdb09930ac2d8.tar.zst
nixpkgs-34c089e7ce9647ddba1b557c3c2bdb09930ac2d8.zip
xmlroff: 0.6.2 -> 0.6.3
Diffstat (limited to 'pkgs/tools/typesetting')
-rw-r--r--pkgs/tools/typesetting/xmlroff/default.nix50
1 files changed, 28 insertions, 22 deletions
diff --git a/pkgs/tools/typesetting/xmlroff/default.nix b/pkgs/tools/typesetting/xmlroff/default.nix
index df9a607d4f2..eb026e5557e 100644
--- a/pkgs/tools/typesetting/xmlroff/default.nix
+++ b/pkgs/tools/typesetting/xmlroff/default.nix
@@ -1,49 +1,55 @@
-{ stdenv, fetchurl, pkgconfig, libxml2, libxslt, popt, perl
-, glib, pango, pangoxsl, gtk2, libtool, autoconf, automake }:
+{ stdenv, fetchFromGitHub
+, autoreconfHook
+, gtk2
+, libxml2
+, libxslt
+, pango
+, pangoxsl
+, perl
+, pkgconfig
+, popt
+}:
 
 stdenv.mkDerivation rec {
   pname = "xmlroff";
-  version = "0.6.2";
+  version = "0.6.3";
 
-  src = fetchurl {
-    url = "https://github.com/xmlroff/xmlroff/archive/v${version}.tar.gz";
-    sha256 = "1sczn6xjczsfdxlbjqv4xqlki2a95y2s8ih2nl9v1vhqfk17fiww";
+  src = fetchFromGitHub {
+    owner = pname;
+    repo = pname;
+    rev = "v${version}";
+    sha256 = "0dgp72094lx9i9gvg21pp8ak7bg39707rdf6wz011p9s6n6lrq5g";
   };
 
-  nativeBuildInputs = [ pkgconfig ];
+  nativeBuildInputs = [ autoreconfHook pkgconfig ];
   buildInputs = [
-    autoconf
-    automake
     libxml2
     libxslt
-    libtool
-    glib
     pango
     pangoxsl
     gtk2
     popt
   ];
 
+  sourceRoot = "source/xmlroff/";
+
+  enableParallelBuilding = true;
+
   configureScript = "./autogen.sh";
 
   configureFlags = [
-    "--disable-pangoxsl"
     "--disable-gp"
   ];
 
-  hardeningDisable = [ "format" ];
-
   preBuild = ''
     substituteInPlace tools/insert-file-as-string.pl --replace "/usr/bin/perl" "${perl}/bin/perl"
-    substituteInPlace Makefile --replace "docs" ""
+    substituteInPlace Makefile --replace "docs" ""  # docs target wants to download from network
   '';
 
-  sourceRoot = "${pname}-${version}/xmlroff/";
-
-  patches = [./xmlroff.patch];
-
-  meta = {
-    platforms = stdenv.lib.platforms.unix;
-    license = stdenv.lib.licenses.bsd3;
+  meta = with stdenv.lib; {
+    description = "XSL Formatter";
+    homepage = "http://xmlroff.org/";
+    platforms = platforms.unix;
+    license = licenses.bsd3;
   };
 }