52f1332cba
atom-beta: 1.43.0-beta0 -> 1.49.0-beta0 This version bump includes node-gyp 3.7.0 -> 5.1.0 in Atom's apm/package-lock.json, which, per https://github.com/nodejs/node-gyp/issues/1687 , finally allows python3 to be used instead of EOL'd python2 for atom-package installation.
22 lines
895 B
Nix
22 lines
895 B
Nix
{ stdenv, lib, zlib, glib, alsaLib, dbus, gtk3, atk, pango, freetype, fontconfig
|
|
, libgnome-keyring3, gdk-pixbuf, cairo, cups, expat, libgpgerror, nspr
|
|
, gconf, nss, xorg, libcap, systemd, libnotify, libsecret, libuuid, at-spi2-atk
|
|
, at-spi2-core
|
|
}:
|
|
|
|
let
|
|
packages = [
|
|
stdenv.cc.cc zlib glib dbus gtk3 atk pango freetype libgnome-keyring3
|
|
fontconfig gdk-pixbuf cairo cups expat libgpgerror alsaLib nspr gconf nss
|
|
xorg.libXrender xorg.libX11 xorg.libXext xorg.libXdamage xorg.libXtst
|
|
xorg.libXcomposite xorg.libXi xorg.libXfixes xorg.libXrandr
|
|
xorg.libXcursor xorg.libxkbfile xorg.libXScrnSaver libcap systemd libnotify
|
|
xorg.libxcb libsecret libuuid at-spi2-atk at-spi2-core
|
|
];
|
|
|
|
libPathNative = lib.makeLibraryPath packages;
|
|
libPath64 = lib.makeSearchPathOutput "lib" "lib64" packages;
|
|
libPath = "${libPathNative}:${libPath64}";
|
|
|
|
in { inherit packages libPath; }
|