Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
44 lines
698 B
Nix
44 lines
698 B
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchurl,
|
|
pkg-config,
|
|
glib,
|
|
libgsf,
|
|
libxml2,
|
|
bzip2,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "libwpd";
|
|
version = "0.8.14";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/libwpd/libwpd-${version}.tar.gz";
|
|
sha256 = "1syli6i5ma10cwzpa61a18pyjmianjwsf6pvmvzsh5md6yk4yx01";
|
|
};
|
|
|
|
patches = [ ./gcc-0.8.patch ];
|
|
|
|
buildInputs = [
|
|
glib
|
|
libgsf
|
|
libxml2
|
|
];
|
|
|
|
nativeBuildInputs = [
|
|
pkg-config
|
|
bzip2
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Library for importing WordPerfect documents";
|
|
homepage = "https://libwpd.sourceforge.net";
|
|
license = with licenses; [
|
|
lgpl21
|
|
mpl20
|
|
];
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|