lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

ugarit: fix build

+15
+5
pkgs/tools/backup/ugarit/eggs.nix
··· 192 192 buildInputs = [ 193 193 194 194 ]; 195 + 196 + patches = [ 197 + # missing include <sys/sysmacros.h> since Jan 2025, cause unknown 198 + ./posix-extras-add-sysmacros-include.patch 199 + ]; 195 200 }; 196 201 197 202 record-variants = eggDerivation {
+10
pkgs/tools/backup/ugarit/posix-extras-add-sysmacros-include.patch
··· 1 + --- a/posix-extras.scm 1970-01-01 01:00:01.000000000 +0100 2 + +++ b/posix-extras.scm 1970-01-01 01:00:01.000000000 +0100 3 + @@ -110,6 +110,7 @@ static void *C_not_implemented_ptr(void) 4 + #endif 5 + 6 + #if defined (__unix__) || defined (C_XXXBSD) 7 + +#include <sys/sysmacros.h> 8 + #include <sys/types.h> 9 + #define C_mknod(fn, m, d) C_fix(mknod(C_data_pointer(fn), C_unfix(m), C_unfix(d))) 10 + #define C_mknod64(fn, m, maj, min) C_fix(mknod(C_data_pointer(fn), C_unfix(m), makedev(C_num_to_int(maj), C_num_to_int(min))))