Created
January 8, 2019 15:16
-
-
Save unya/a1415cbd7594d9a62fbff868a9b89df5 to your computer and use it in GitHub Desktop.
nix-shell not working
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
let | |
pkgs = import <nixpkgs> {}; | |
fhs = pkgs.buildFHSUserEnv { | |
name = "versionkeeper"; | |
targetPkgs = pkgs: with pkgs; [ | |
alsaLib atk cairo cups dbus expat | |
file fontconfig freetype gdb git | |
glib gtk3-x11 gtk2-x11 libnotify libxml2 | |
libxslt netcat nspr nss | |
strace udev watch wget which xorg.libX11 | |
xorg.libXScrnSaver xorg.libXcomposite | |
xorg.libXcursor xorg.libXdamage | |
xorg.libXext xorg.libXfixes xorg.libXi | |
xorg.libXrandr xorg.libXrender | |
xorg.libXtst xorg.libxcb xorg.xcbutilkeysyms | |
zlib zsh | |
jetbrains.ruby-mine | |
jetbrains.jdk | |
jetbrains.webstorm | |
jetbrains.datagrip | |
ruby_2_4.devEnv | |
freetds | |
nodejs-10_x | |
unzip | |
openssh | |
zip xml2 | |
procps | |
]; | |
runScript = "bash"; | |
}; | |
in pkgs.stdenv.mkDerivation { | |
name = "versionkeeper-env-shell"; | |
nativeBuildInputs = [fhs]; | |
# shellHook = "exec versionkeeper-env"; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment