tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
meshlab: 2020.07 -> 2020.12
Thiago Franco de Moraes
5 years ago
c2400773
312390ca
+7
-21
1 changed file
expand all
collapse all
unified
split
pkgs
applications
graphics
meshlab
default.nix
+7
-21
pkgs/applications/graphics/meshlab/default.nix
···
1
{ mkDerivation
2
, lib
3
, fetchFromGitHub
4
-
, fetchpatch
5
, libGLU
6
, qtbase
7
, qtscript
···
19
20
mkDerivation rec {
21
pname = "meshlab";
22
-
version = "2020.07";
23
24
src = fetchFromGitHub {
25
owner = "cnr-isti-vclab";
26
repo = "meshlab";
27
rev = "Meshlab-${version}";
28
-
sha256 = "0vj849b57zk3k6lx35zzcjhr9gdy4hxqnnkb8chwy7hw262cm3ri";
29
fetchSubmodules = true; # for vcglib
30
};
31
···
46
47
nativeBuildInputs = [ cmake ];
48
49
-
patches = [
50
-
# Make cmake use the system qhull. The next meshlab will not need this patch because it is already in master.
51
-
(fetchpatch {
52
-
url = "https://patch-diff.githubusercontent.com/raw/cnr-isti-vclab/meshlab/pull/747.patch";
53
-
sha256 = "0wx9f6zn458xz3lsqcgvsbwh1pgi3g0lah93nlbsb0sagng7n565";
54
-
})
55
-
];
56
-
57
preConfigure = ''
58
-
substituteAll ${./meshlab.desktop} install/linux/resources/meshlab.desktop
59
-
cd src
0
0
60
'';
61
62
cmakeFlags = [
···
75
76
postFixup = ''
77
patchelf --add-needed $out/lib/meshlab/libmeshlab-common.so $out/bin/.meshlab-wrapped
78
-
patchelf --add-needed $out/lib/meshlab/libmeshlab-common.so $out/bin/.meshlabserver-wrapped
79
'';
80
81
-
# Meshlab is not format-security clean; without disabling hardening, we get:
82
-
# src/common/GLLogStream.h:61:37: error: format not a string literal and no format arguments [-Werror=format-security]
83
-
# 61 | int chars_written = snprintf(buf, buf_size, f, std::forward<Ts>(ts)...);
84
-
# |
85
-
hardeningDisable = [ "format" ];
86
-
87
meta = {
88
description = "A system for processing and editing 3D triangular meshes";
89
homepage = "https://www.meshlab.net/";
90
-
license = lib.licenses.gpl3;
91
maintainers = with lib.maintainers; [ viric ];
92
platforms = with lib.platforms; linux;
93
};
···
1
{ mkDerivation
2
, lib
3
, fetchFromGitHub
0
4
, libGLU
5
, qtbase
6
, qtscript
···
18
19
mkDerivation rec {
20
pname = "meshlab";
21
+
version = "2020.12";
22
23
src = fetchFromGitHub {
24
owner = "cnr-isti-vclab";
25
repo = "meshlab";
26
rev = "Meshlab-${version}";
27
+
sha256 = "QrnqXEVqI1ADUYWalZ0h/0+xS+gDZTinm0weT39onw0=";
28
fetchSubmodules = true; # for vcglib
29
};
30
···
45
46
nativeBuildInputs = [ cmake ];
47
0
0
0
0
0
0
0
0
48
preConfigure = ''
49
+
substituteAll ${./meshlab.desktop} scripts/Linux/resources/meshlab.desktop
50
+
cmakeDir=$PWD/src
51
+
mkdir ../build
52
+
cd ../build
53
'';
54
55
cmakeFlags = [
···
68
69
postFixup = ''
70
patchelf --add-needed $out/lib/meshlab/libmeshlab-common.so $out/bin/.meshlab-wrapped
0
71
'';
72
0
0
0
0
0
0
73
meta = {
74
description = "A system for processing and editing 3D triangular meshes";
75
homepage = "https://www.meshlab.net/";
76
+
license = lib.licenses.gpl3Only;
77
maintainers = with lib.maintainers; [ viric ];
78
platforms = with lib.platforms; linux;
79
};