nixpkgs/pkgs/development/libraries/libwpg/default.nix
R. RyanTM 2a55cb0e25 libwpg: 0.3.2 -> 0.3.3
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/libwpg/versions
2019-03-25 18:54:04 -07:00

21 lines
549 B
Nix

{ stdenv, fetchurl, pkgconfig, libwpd, zlib, librevenge }:
stdenv.mkDerivation rec {
name = "libwpg-0.3.3";
src = fetchurl {
url = "mirror://sourceforge/libwpg/${name}.tar.xz";
sha256 = "074x159immf139szkswv2zapnq75p7xk10dbha2p9193hgwggcwr";
};
buildInputs = [ libwpd zlib librevenge ];
nativeBuildInputs = [ pkgconfig ];
meta = with stdenv.lib; {
homepage = http://libwpg.sourceforge.net;
description = "C++ library to parse WPG";
license = with licenses; [ lgpl21 mpl20 ];
platforms = platforms.all;
};
}