libwpg: 0.3.3 -> 0.3.4

This commit is contained in:
Simon Hollingshead 2024-01-21 07:04:25 +00:00
parent 28330aa204
commit 39d481d3b0

View file

@ -1,15 +1,15 @@
{ lib, stdenv, fetchurl, pkg-config, libwpd, zlib, librevenge }:
{ lib, stdenv, fetchurl, pkg-config, libwpd, zlib, librevenge, boost }:
stdenv.mkDerivation rec {
pname = "libwpg";
version = "0.3.3";
version = "0.3.4";
src = fetchurl {
url = "mirror://sourceforge/libwpg/${pname}-${version}.tar.xz";
sha256 = "074x159immf139szkswv2zapnq75p7xk10dbha2p9193hgwggcwr";
hash = "sha256-tV/alEDR4HBjDrJIfYuGl89BLCFKJ8runfac7HwATeM=";
};
buildInputs = [ libwpd zlib librevenge ];
buildInputs = [ libwpd zlib librevenge boost ];
nativeBuildInputs = [ pkg-config ];
meta = with lib; {