about summary refs log tree commit diff
path: root/pkgs/development/libraries/libwpg/default.nix
blob: 18a8e49beea7e0fe81ab5d94f179c6dbd89d7add (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{ stdenv, fetchurl, pkgconfig, libwpd, zlib }:

stdenv.mkDerivation rec {
  name = "libwpg-0.2.1";

  src = fetchurl {
    url = "mirror://sourceforge/libwpg/${name}.tar.xz";
    sha256 = "0d83nx4rxkrq2sbfbbqpddni56h1328dzmraxyl6vh9p4f19rh5d";
  };

  buildInputs = [ libwpd zlib ];
  nativeBuildInputs = [ pkgconfig ];

  meta = {
    homepage = http://libwpg.sourceforge.net;
    description = "C++ library to parse WPG";
    maintainers = [ stdenv.lib.maintainers.urkud ];
    platforms = stdenv.lib.platforms.all;
  };
}