tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
spaceFM: fix build w/glibc-2.30
Maximilian Bosch
6 years ago
32ea78ac
c36d8a83
+14
2 changed files
expand all
collapse all
unified
split
pkgs
applications
misc
spacefm
default.nix
glibc-fix.patch
+2
pkgs/applications/misc/spacefm/default.nix
···
13
13
sha256 = "089r6i40lxcwzp60553b18f130asspnzqldlpii53smz52kvpirx";
14
14
};
15
15
16
16
+
patches = [ ./glibc-fix.patch ];
17
17
+
16
18
configureFlags = [
17
19
"--with-bash-path=${pkgs.bash}/bin/bash"
18
20
];
+12
pkgs/applications/misc/spacefm/glibc-fix.patch
···
1
1
+
diff --git a/src/main.c b/src/main.c
2
2
+
index 27f5614..2b45708 100644
3
3
+
--- a/src/main.c
4
4
+
+++ b/src/main.c
5
5
+
@@ -23,6 +23,7 @@
6
6
+
#include <sys/types.h>
7
7
+
#include <sys/socket.h>
8
8
+
#include <sys/un.h>
9
9
+
+#include <sys/sysmacros.h>
10
10
+
11
11
+
#include <signal.h>
12
12
+