-
-
Save dustinlacewell-wk/4c1ea602a12ffdb258ef5f62389e4d6d to your computer and use it in GitHub Desktop.
This file contains hidden or 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
config.status: executing libtool commands | |
---{ libcanberra 0.30 }--- | |
prefix: /nix/store/ba002ji9snl9v2wbp4bkpnr1q9ii8frq-libcanberra-0.30 | |
sysconfdir: ${prefix}/etc | |
localstatedir: ${prefix}/var | |
Compiler: clang | |
CFLAGS: -g -O2 | |
C++-Compiler: clang++ | |
CXXFLAGS: -g -O2 | |
Builtin DSO: yes | |
Enable PulseAudio: yes | |
Builtin PulseAudio: no | |
Enable ALSA: no | |
Builtin ALSA: no | |
Enable OSS: no | |
Builtin OSS: no | |
Enable GStreamer: no | |
Builtin GStreamer: no | |
Enable Null Output: yes | |
Builtin Null Output: no | |
Enable tdb: no | |
Enable lookup cache: no | |
Enable GTK+: yes | |
GTK Modules Directory: ${exec_prefix}/lib/gtk-2.0/modules | |
Enable GTK3+: no | |
GTK3 Modules Directory: | |
Enable udev: no | |
systemd Unit Directory: | |
building | |
build flags: SHELL=/nix/store/g6l32ncr8vlpprlmv9kgr4qksx929cbj-bash-4.4-p12/bin/bash | |
make all-recursive | |
make[1]: Entering directory '/private/tmp/nix-build-libcanberra-0.30.drv-0/libcanberra-0.30' | |
Making all in src | |
make[2]: Entering directory '/private/tmp/nix-build-libcanberra-0.30.drv-0/libcanberra-0.30/src' | |
CC libcanberra_gtk_module_la-canberra-gtk-module.lo | |
canberra-gtk-module.c:28:10: fatal error: 'gdk/gdkx.h' file not found | |
#include <gdk/gdkx.h> | |
^~~~~~~~~~~~ | |
1 error generated. | |
make[2]: *** [Makefile:1312: libcanberra_gtk_module_la-canberra-gtk-module.lo] Error 1 | |
make[2]: Leaving directory '/private/tmp/nix-build-libcanberra-0.30.drv-0/libcanberra-0.30/src' | |
make[1]: *** [Makefile:546: all-recursive] Error 1 | |
make[1]: Leaving directory '/private/tmp/nix-build-libcanberra-0.30.drv-0/libcanberra-0.30' | |
make: *** [Makefile:408: all] Error 2 | |
builder for ‘/nix/store/rbbnr0zkxmkd4kk1l3cgni5v3crzr6xx-libcanberra-0.30.drv’ failed with exit code 2 | |
cannot build derivation ‘/nix/store/cn7bs17l7k1j4lby1ljcwidh1irf8nh2-libgnome-2.32.1.drv’: 1 dependencies couldn't be built | |
cannot build derivation ‘/nix/store/ixgjb758j7fc7a0f2brafxqp86qj6i91-libgnomeui-2.24.5.drv’: 1 dependencies couldn't be built | |
cannot build derivation ‘/nix/store/ra1ddmaw74cqzyb8n8265w14gmlji42l-gtk-sharp-2.12.10.drv’: 1 dependencies couldn't be built | |
error: build of ‘/nix/store/ra1ddmaw74cqzyb8n8265w14gmlji42l-gtk-sharp-2.12.10.drv’ failed |
This file contains hidden or 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
{ | |
allowUnfree = true; | |
packageOverrides = pkgs: { | |
libcap = null; | |
attr = null; | |
acl = null; | |
alsaLib = null; | |
cups = null; | |
procps = null; | |
}; | |
} |
This file contains hidden or 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
diff --git a/pkgs/development/libraries/gtk-sharp/2.0.nix b/pkgs/development/libraries/gtk-sharp/2.0.nix | |
index 5b3ca828a3..f51aef88e4 100644 | |
--- a/pkgs/development/libraries/gtk-sharp/2.0.nix | |
+++ b/pkgs/development/libraries/gtk-sharp/2.0.nix | |
@@ -35,7 +35,7 @@ stdenv.mkDerivation { | |
nativeBuildInputs = [ pkgconfig ]; | |
buildInputs = [ | |
mono glib pango gtk2 GConf libglade libgnomecanvas | |
- libgtkhtml libgnomeui libgnomeprint libgnomeprintui gtkhtml libxml2 | |
+ libgtkhtml libgnomeui libxml2 | |
]; | |
dontStrip = true; | |
@@ -47,6 +47,6 @@ stdenv.mkDerivation { | |
}; | |
meta = { | |
- platforms = stdenv.lib.platforms.linux; | |
+ platforms = stdenv.lib.platforms.linux ++ stdenv.lib.platforms.darwin; | |
}; | |
} | |
diff --git a/pkgs/development/libraries/libcanberra/default.nix b/pkgs/development/libraries/libcanberra/default.nix | |
index 1b2cf4084f..cd9e443d33 100644 | |
--- a/pkgs/development/libraries/libcanberra/default.nix | |
+++ b/pkgs/development/libraries/libcanberra/default.nix | |
@@ -43,6 +43,6 @@ stdenv.mkDerivation rec { | |
license = stdenv.lib.licenses.lgpl2Plus; | |
maintainers = [ ]; | |
- platforms = stdenv.lib.platforms.gnu; # arbitrary choice | |
+ platforms = stdenv.lib.platforms.all; # arbitrary choice | |
}; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment