-
Notifications
You must be signed in to change notification settings - Fork 41
/
shell.nix
63 lines (62 loc) · 888 Bytes
/
shell.nix
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{ pkgs ? import <nixpkgs> {} }:
# a simple x11 env
(pkgs.buildFHSUserEnv {
name = "fhs";
targetPkgs = pkgs: with pkgs; [
coreutils
alsaLib
atk
at-spi2-atk
at-spi2-core
cairo
cups
dbus
expat
file
fontconfig
freetype
gdb
gdk_pixbuf
git
glib
glibc
gtk2
gtk3
libarchive
libnotify
libxml2
libxslt
libuuid
mesa_glu
pango
rxvt_unicode.terminfo
curl
openal
openssl_1_0_2
netcat
nspr
nss
strace
udev
watch
wget
which
xorg.libXxf86vm
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
];
runScript = "bash";
}).env