3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/tools/text/unrtf/default.nix
Matthew Bauer a6faa04ee4 unrtf: fix darwin build
unrtf needs libiconv on Darwin. Linux has issues with the -liconv flag,
but it's provided by gcc anyway.
2016-08-16 19:25:46 +00:00

33 lines
957 B
Nix

{ stdenv, fetchurl, autoconf, automake, libiconv }:
stdenv.mkDerivation rec {
name = "unrtf-${version}";
version = "0.21.9";
src = fetchurl {
url = "https://www.gnu.org/software/unrtf/${name}.tar.gz";
sha256 = "1pcdzf2h1prn393dkvg93v80vh38q0v817xnbwrlwxbdz4k7i8r2";
};
nativeBuildInputs = [ autoconf automake ];
buildInputs = [ ] ++ stdenv.lib.optional stdenv.isDarwin libiconv;
NIX_LDFLAGS = stdenv.lib.optionalString stdenv.isDarwin "-liconv";
preConfigure = "./bootstrap";
outputs = [ "out" "man" ];
meta = with stdenv.lib; {
description = "A converter from Rich Text Format to other formats";
longDescription = ''
UnRTF converts documents in Rich Text Format to other
formats, including HTML, LaTeX, and RTF itself.
'';
homepage = https://www.gnu.org/software/unrtf/;
license = licenses.gpl3Plus;
maintainers = with maintainers; [ joachifm ];
platforms = platforms.unix;
};
}