base16-schemes: unstable-2024-06-21 -> unstable-2024-11-12
[NixPkgs.git] / pkgs / by-name / li / libzmf / package.nix
blob0e139ad529261e5cf5a0d5eca9d6594dc8130f3d
1 {lib, stdenv, fetchurl, boost, icu, libpng, librevenge, zlib, doxygen, pkg-config, cppunit}:
3 stdenv.mkDerivation rec {
4   pname = "libzmf";
5   version = "0.0.2";
7   src = fetchurl {
8     url = "http://dev-www.libreoffice.org/src/libzmf/${pname}-${version}.tar.xz";
9     sha256 = "08mg5kmkjrmqrd8j5rkzw9vdqlvibhb1ynp6bmfxnzq5rcq1l197";
10   };
12   buildInputs = [ boost icu libpng librevenge zlib cppunit ];
13   nativeBuildInputs = [ doxygen pkg-config ];
14   configureFlags = [ "--disable-werror" ];
16   meta = {
17     description = "Library that parses the file format of Zoner Callisto/Draw documents";
18     license = lib.licenses.mpl20;
19     maintainers = [lib.maintainers.raskin];
20     platforms = lib.platforms.unix;
21     homepage = "https://wiki.documentfoundation.org/DLP/Libraries/libzmf";
22     downloadPage = "http://dev-www.libreoffice.org/src/libzmf/";
23   };