nixpkgs/pkgs/development/libraries/libzmf/default.nix
Ryan Mulligan b604d0dbf7 libzmf: 0.0.1 -> 0.0.2
Semi-automatic update. These checks were performed:

- built on NixOS
- ran `/nix/store/qq22lnv1qj1qwxmnf1qikf5a76girca4-libzmf-0.0.2/bin/zmf2raw --version` and found version 0.0.2
- ran `/nix/store/qq22lnv1qj1qwxmnf1qikf5a76girca4-libzmf-0.0.2/bin/zmf2svg --version` and found version 0.0.2
- found 0.0.2 with grep in /nix/store/qq22lnv1qj1qwxmnf1qikf5a76girca4-libzmf-0.0.2
- found 0.0.2 in filename of file in /nix/store/qq22lnv1qj1qwxmnf1qikf5a76girca4-libzmf-0.0.2

cc "@raskin"
2018-02-26 21:40:10 -08: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.2";
src = fetchurl {
url = "http://dev-www.libreoffice.org/src/libzmf/${name}.tar.xz";
sha256 = "08mg5kmkjrmqrd8j5rkzw9vdqlvibhb1ynp6bmfxnzq5rcq1l197";
};
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;
};
}