linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / libraries / libzmf / default.nix
blobf71b6d0c0b978e38ee949774e93fee5933bb5502
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     inherit version;
18     description = "A library that parses the file format of Zoner Callisto/Draw documents";
19     license = lib.licenses.mpl20;
20     maintainers = [lib.maintainers.raskin];
21     platforms = lib.platforms.unix;
22     homepage = "https://wiki.documentfoundation.org/DLP/Libraries/libzmf";
23     downloadPage = "http://dev-www.libreoffice.org/src/libzmf/";
24     updateWalker = true;
25   };