The systemkey problem was fixed in 3.4.15 [1].
The guileBindings issue was fixed 3 years ago, and is included
in all versions of gnutls we use today [2].
[1] 25d2f643c0
[2] 0d34b03f0e
Without this one gets a lot of build time warnings like:
ld: warning: object file (/tmp/strip.2OzFn8) was built for newer OSX
version (10.9) than being linked (10.7)
Compiling Fl_cocoa.mm...
Fl_cocoa.mm:4079:30: error: use of undeclared identifier 'version'; did
you mean 'Fl::version'?
NSOperatingSystemVersion version = [[NSProcessInfo processInfo]
operatingSystemVersion];
^~~~~~~
Fl::version
../FL/Fl.H:262:17: note: 'Fl::version' declared here
static double version();
^
Fl_cocoa.mm:4079:5: error: use of undeclared identifier
'NSOperatingSystemVersion'
NSOperatingSystemVersion version = [[NSProcessInfo processInfo]
operatingSystemVersion];
^
Fl_cocoa.mm:4080:9: error: use of undeclared identifier 'version'
M = version.majorVersion;
^
Fl_cocoa.mm:4081:9: error: use of undeclared identifier 'version'
m = version.minorVersion;
^
Fl_cocoa.mm:4082:9: error: use of undeclared identifier 'version'
b = version.patchVersion;
^
5 errors generated.
This fixes an issue I have faced when trying to connect to the internet
via wwan gsm modem.
(cherry picked from commit 0775adc599f4706e3ff020e700b5f8f69578b6b1)
Closes https://github.com/NixOS/nixpkgs/pull/19812
This is a temporary work-around to fix using grsecurity on NixOS with
the new kernelPackages/kernelPatches machinery.
For whatever reason, when `security.grsecurity.enable = true`, the grsec
patch ends up being applied twice, causing the kernel build to fail.
Until the root cause of this is identified, we hack around it by simply
pruning duplicate patches in the grsec kernel builder.
Closes#19698
We already are in the <nixpkgs> repository and using <nixpkgs> within
its own tree will depend on <nixpkgs> to be set in NIX_PATH, otherwise
the evaluation will fail.
So apart from this issue it isn't even necessary to use <nixpkgs>
instead of the relative path to node-packages.nix, so let's use the
latter.
Signed-off-by: aszlig <aszlig@redmoonstudios.org>
Cc: @uwap, @Mic92