lol
0
fork

Configure Feed

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

at 18.03-beta 20 lines 831 B view raw
1{ stdenv, lib, zlib, glib, alsaLib, dbus, gtk2, atk, pango, freetype, fontconfig 2, libgnome-keyring3, gdk_pixbuf, gvfs, cairo, cups, expat, libgpgerror, nspr 3, gconf, nss, xorg, libcap, systemd, libnotify, libsecret 4}: 5 6let 7 packages = [ 8 stdenv.cc.cc zlib glib dbus gtk2 atk pango freetype libgnome-keyring3 9 fontconfig gdk_pixbuf cairo cups expat libgpgerror alsaLib nspr gconf nss 10 xorg.libXrender xorg.libX11 xorg.libXext xorg.libXdamage xorg.libXtst 11 xorg.libXcomposite xorg.libXi xorg.libXfixes xorg.libXrandr 12 xorg.libXcursor xorg.libxkbfile xorg.libXScrnSaver libcap systemd libnotify 13 xorg.libxcb libsecret 14 ]; 15 16 libPathNative = lib.makeLibraryPath packages; 17 libPath64 = lib.makeSearchPathOutput "lib" "lib64" packages; 18 libPath = "${libPathNative}:${libPath64}"; 19 20in { inherit packages libPath; }