tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
sbclPackages: fixed cl-freetype2
Kasper Gałkowski
3 years ago
bfc75b74
354c89dc
+21
2 changed files
expand all
collapse all
unified
split
pkgs
development
lisp-modules-new
patches
cl-freetype2-fix-grovel-includes.patch
ql.nix
+16
pkgs/development/lisp-modules-new/patches/cl-freetype2-fix-grovel-includes.patch
···
1
1
+
--- a/src/ffi/grovel/grovel-freetype.h
2
2
+
+++ b/src/ffi/grovel/grovel-freetype.h
3
3
+
@@ -2,7 +2,7 @@
4
4
+
#include <ft2build.h>
5
5
+
#include FT_FREETYPE_H
6
6
+
7
7
+
-#include <ftsystem.h>
8
8
+
-#include <fttypes.h>
9
9
+
-#include <ftlist.h>
10
10
+
-#include <ftimage.h>
11
11
+
+#include <freetype/ftsystem.h>
12
12
+
+#include <freetype/fttypes.h>
13
13
+
+#include <freetype/ftlist.h>
14
14
+
+#include <freetype/ftimage.h>
15
15
+
16
16
+
Diff finished. Mon Nov 14 22:41:57 2022
+5
pkgs/development/lisp-modules-new/ql.nix
···
22
22
cl-cairo2 = pkg: {
23
23
nativeLibs = [ cairo ];
24
24
};
25
25
+
cl-freetype2 = pkg: {
26
26
+
nativeLibs = [ freetype ];
27
27
+
nativeBuildInputs = [ freetype ];
28
28
+
patches = [ ./patches/cl-freetype2-fix-grovel-includes.patch ];
29
29
+
};
25
30
cl-cffi-gtk-gdk = pkg: {
26
31
nativeLibs = [ gtk3 ];
27
32
};