Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at fix-function-merge 24 lines 852 B view raw
1{lib, stdenv, fetchurl, boost, icu, libpng, librevenge, zlib, doxygen, pkg-config, cppunit}: 2 3stdenv.mkDerivation rec { 4 pname = "libzmf"; 5 version = "0.0.2"; 6 7 src = fetchurl { 8 url = "http://dev-www.libreoffice.org/src/libzmf/${pname}-${version}.tar.xz"; 9 sha256 = "08mg5kmkjrmqrd8j5rkzw9vdqlvibhb1ynp6bmfxnzq5rcq1l197"; 10 }; 11 12 buildInputs = [ boost icu libpng librevenge zlib cppunit ]; 13 nativeBuildInputs = [ doxygen pkg-config ]; 14 configureFlags = [ "--disable-werror" ]; 15 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 }; 24}