mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 18:26:45 +01:00
21 lines
551 B
Nix
21 lines
551 B
Nix
{ lib, stdenv, fetchurl, pkg-config, 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 = [ pkg-config ];
|
|
|
|
meta = with lib; {
|
|
homepage = "http://libwpg.sourceforge.net";
|
|
description = "C++ library to parse WPG";
|
|
license = with licenses; [ lgpl21 mpl20 ];
|
|
platforms = platforms.all;
|
|
};
|
|
}
|