summary refs log tree commit diff
path: root/pkgs/development/libraries/libwpd/0.8.nix
blob: f47208cda4402a3cfa820059787ebed1a00a7174 (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
{ stdenv, fetchurl, pkgconfig, glib, libgsf, libxml2, bzip2 }:

stdenv.mkDerivation rec {
  name = "libwpd-0.8.14";

  src = fetchurl {
    url = "mirror://sourceforge/libwpd/${name}.tar.gz";
    sha256 = "1syli6i5ma10cwzpa61a18pyjmianjwsf6pvmvzsh5md6yk4yx01";
  };

  patches = [ ./gcc-0.8.patch ];

  buildInputs = [ glib libgsf libxml2 ];

  nativeBuildInputs = [ pkgconfig bzip2 ];

  meta = with stdenv.lib; {
    description = "Library for importing WordPerfect documents";
    homepage = "http://libwpd.sourceforge.net";
    license = with licenses; [ lgpl21 mpl20 ];
    platforms = platforms.unix;
  };
}