mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-03 11:02:05 +00:00
Add libvisio (libreoffice dependency)
This commit is contained in:
parent
702854cb5d
commit
30ba367d5a
21
pkgs/development/libraries/libvisio/default.nix
Normal file
21
pkgs/development/libraries/libvisio/default.nix
Normal file
|
@ -0,0 +1,21 @@
|
|||
{ stdenv, fetchurl, boost, libwpd, libwpg, pkgconfig }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "libvisio-0.0.19";
|
||||
|
||||
src = fetchurl {
|
||||
url = "http://dev-www.libreoffice.org/src/${name}.tar.xz";
|
||||
sha256 = "1iqkz280mi066bdccyxagkqm41i270nx01cacvgjq2pflgd3njd1";
|
||||
};
|
||||
|
||||
buildNativeInputs = [ pkgconfig ];
|
||||
buildInputs = [ boost libwpd libwpg ];
|
||||
|
||||
configureFlags = "--disable-werror";
|
||||
|
||||
meta = {
|
||||
description = "A library providing ability to interpret and import visio diagrams into various applications";
|
||||
homepage = http://www.freedesktop.org/wiki/Software/libvisio;
|
||||
platforms = stdenv.lib.platforms.gnu; # random choice
|
||||
};
|
||||
}
|
|
@ -4335,6 +4335,8 @@ let
|
|||
|
||||
libvirt = callPackage ../development/libraries/libvirt { };
|
||||
|
||||
libvisio = callPackage ../development/libraries/libvisio { };
|
||||
|
||||
libvncserver = builderDefsPackage (import ../development/libraries/libvncserver) {
|
||||
inherit libtool libjpeg openssl zlib;
|
||||
inherit (xlibs) xproto libX11 damageproto libXdamage
|
||||
|
|
Loading…
Reference in a new issue