libzmf: init at 0.0.1
This commit is contained in:
parent
4675cb78cb
commit
d042a831a3
26
pkgs/development/libraries/libzmf/default.nix
Normal file
26
pkgs/development/libraries/libzmf/default.nix
Normal file
@ -0,0 +1,26 @@
|
|||||||
|
{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];
|
||||||
|
|
||||||
|
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;
|
||||||
|
};
|
||||||
|
}
|
@ -2676,6 +2676,8 @@ with pkgs;
|
|||||||
|
|
||||||
libx86emu = callPackage ../development/libraries/libx86emu { };
|
libx86emu = callPackage ../development/libraries/libx86emu { };
|
||||||
|
|
||||||
|
libzmf = callPackage ../development/libraries/libzmf {};
|
||||||
|
|
||||||
librdmacm = callPackage ../development/libraries/librdmacm { };
|
librdmacm = callPackage ../development/libraries/librdmacm { };
|
||||||
|
|
||||||
libreswan = callPackage ../tools/networking/libreswan { };
|
libreswan = callPackage ../tools/networking/libreswan { };
|
||||||
|
Loading…
x
Reference in New Issue
Block a user