-
-
Notifications
You must be signed in to change notification settings - Fork 14.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #79293 from NixOS/staging-next
Staging next (with glibc 2.30)
- Loading branch information
Showing
80 changed files
with
1,042 additions
and
802 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
diff --git a/src/main.c b/src/main.c | ||
index 27f5614..2b45708 100644 | ||
--- a/src/main.c | ||
+++ b/src/main.c | ||
@@ -23,6 +23,7 @@ | ||
#include <sys/types.h> | ||
#include <sys/socket.h> | ||
#include <sys/un.h> | ||
+#include <sys/sysmacros.h> | ||
|
||
#include <signal.h> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
{ stdenv, fetchurl, pkg-config, gtk3 }: | ||
|
||
stdenv.mkDerivation rec { | ||
pname = "ssw"; | ||
version = "0.3"; | ||
|
||
src = fetchurl { | ||
url = "https://alpha.gnu.org/gnu/ssw/spread-sheet-widget-${version}.tar.gz"; | ||
sha256 = "1h93yyh2by6yrmkwqg38nd5knids05k5nqzcihc1hdwgzg3c4b8y"; | ||
}; | ||
|
||
nativeBuildInputs = [ pkg-config ]; | ||
buildInputs = [ gtk3 ]; | ||
|
||
meta = with stdenv.lib; { | ||
homepage = "https://www.gnu.org/software/ssw/"; | ||
license = licenses.gpl3; | ||
description = "GNU Spread Sheet Widget"; | ||
platforms = platforms.linux; | ||
}; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
diff --git a/mono/io-layer/processes.c b/mono/io-layer/processes.c | ||
index 53c271a4..84bd3252 100644 | ||
--- a/mono/io-layer/processes.c | ||
+++ b/mono/io-layer/processes.c | ||
@@ -19,6 +19,7 @@ | ||
#include <errno.h> | ||
#include <sys/types.h> | ||
#include <sys/stat.h> | ||
+#include <sys/sysmacros.h> | ||
#include <unistd.h> | ||
#ifdef HAVE_SIGNAL_H | ||
#include <signal.h> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
23 changes: 23 additions & 0 deletions
23
pkgs/development/interpreters/python/cpython/3.7/darwin-libutil.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
diff --git a/Modules/posixmodule.c b/Modules/posixmodule.c | ||
index c3682b4..16826c6 100644 | ||
--- a/Modules/posixmodule.c | ||
+++ b/Modules/posixmodule.c | ||
@@ -5880,15 +5880,13 @@ error: | ||
#if defined(HAVE_OPENPTY) || defined(HAVE_FORKPTY) || defined(HAVE_DEV_PTMX) | ||
#ifdef HAVE_PTY_H | ||
#include <pty.h> | ||
-#else | ||
+#endif | ||
#ifdef HAVE_LIBUTIL_H | ||
#include <libutil.h> | ||
-#else | ||
+#endif | ||
#ifdef HAVE_UTIL_H | ||
#include <util.h> | ||
-#endif /* HAVE_UTIL_H */ | ||
-#endif /* HAVE_LIBUTIL_H */ | ||
-#endif /* HAVE_PTY_H */ | ||
+#endif | ||
#ifdef HAVE_STROPTS_H | ||
#include <stropts.h> | ||
#endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.