nixpkgs/pkgs/development/libraries/libzmf/default.nix
Silvan Mosberger f5fa5fa4d6 pkgs: refactor needless quoting of homepage meta attribute (#27809)
* pkgs: refactor needless quoting of homepage meta attribute

A lot of packages are needlessly quoting the homepage meta attribute
(about 1400, 22%), this commit refactors all of those instances.

* pkgs: Fixing some links that were wrongfully unquoted in the previous
commit

* Fixed some instances
2017-08-01 22:03:30 +02:00

28 lines
931 B
Nix

{stdenv, fetchurl, boost, icu, libpng, librevenge, zlib, doxygen, pkgconfig, cppunit}:
stdenv.mkDerivation rec {
name = "${pname}-${version}";
pname = "libzmf";
version = "0.0.1";
src = fetchurl {
url = "http://dev-www.libreoffice.org/src/libzmf/${name}.tar.xz";
sha256 = "0yp5l1b90xim506zmr3ljkn3qkvbc7qk3dnwq1snxdpr57m37xga";
};
buildInputs = [boost icu libpng librevenge zlib cppunit];
nativeBuildInputs = [doxygen pkgconfig];
configureFlags = " --disable-werror ";
meta = {
inherit version;
description = ''A library that parses the file format of Zoner Callisto/Draw documents'';
license = stdenv.lib.licenses.mpl20;
maintainers = [stdenv.lib.maintainers.raskin];
platforms = stdenv.lib.platforms.linux;
homepage = https://wiki.documentfoundation.org/DLP/Libraries/libzmf;
downloadPage = "http://dev-www.libreoffice.org/src/libzmf/";
updateWalker = true;
};
}