tangled
alpha
login
or
join now
tjh.dev
/
nixpkgs
Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
0
fork
atom
overview
issues
pulls
pipelines
libvisio2svg: init at 0.5.5
Alexandre Iooss
4 years ago
b3685e1f
89e61c98
+36
2 changed files
expand all
collapse all
unified
split
pkgs
development
libraries
libvisio2svg
default.nix
top-level
all-packages.nix
+34
pkgs/development/libraries/libvisio2svg/default.nix
···
1
1
+
{ lib
2
2
+
, stdenv
3
3
+
, fetchFromGitHub
4
4
+
, cmake
5
5
+
, freetype
6
6
+
, libemf2svg
7
7
+
, librevenge
8
8
+
, libvisio
9
9
+
, libwmf
10
10
+
, libxml2
11
11
+
}:
12
12
+
13
13
+
stdenv.mkDerivation rec {
14
14
+
pname = "libvisio2svg";
15
15
+
version = "0.5.5";
16
16
+
17
17
+
src = fetchFromGitHub {
18
18
+
owner = "kakwa";
19
19
+
repo = pname;
20
20
+
rev = version;
21
21
+
sha256 = "14m37mmib1596c76j9w178jqhwxyih2sy5w5q9xglh8cmlfn1hfx";
22
22
+
};
23
23
+
24
24
+
nativeBuildInputs = [ cmake ];
25
25
+
buildInputs = [ libxml2 freetype librevenge libvisio libwmf libemf2svg ];
26
26
+
27
27
+
meta = with lib; {
28
28
+
description = "Library and tools to convert Microsoft Visio documents (VSS and VSD) to SVG";
29
29
+
homepage = "https://github.com/kakwa/libvisio2svg";
30
30
+
maintainers = with maintainers; [ erdnaxe ];
31
31
+
license = licenses.gpl2Only;
32
32
+
platforms = [ "x86_64-linux" ];
33
33
+
};
34
34
+
}
+2
pkgs/top-level/all-packages.nix
···
17485
17485
17486
17486
libvisio = callPackage ../development/libraries/libvisio { };
17487
17487
17488
17488
+
libvisio2svg = callPackage ../development/libraries/libvisio2svg { };
17489
17489
+
17488
17490
libvisual = callPackage ../development/libraries/libvisual { };
17489
17491
17490
17492
libvmaf = callPackage ../development/libraries/libvmaf { };