mirror of
https://gitlab.com/sheaf/metabrush.git
synced 2024-11-05 14:53:37 +00:00
30 lines
625 B
Nix
30 lines
625 B
Nix
|
let np = import <nixpkgs> {};
|
||
|
in with np; np.mkShell { packages =
|
||
|
[ cabal-install
|
||
|
zlib
|
||
|
pkg-config
|
||
|
gobject-introspection
|
||
|
gtk4
|
||
|
pcre
|
||
|
cairo
|
||
|
glib
|
||
|
atk
|
||
|
util-linux
|
||
|
libselinux
|
||
|
libsepol
|
||
|
xorg.libXdmcp
|
||
|
libthai
|
||
|
libdatrie
|
||
|
epoxy
|
||
|
fribidi
|
||
|
xorg.libXi
|
||
|
xorg.libXrandr
|
||
|
xorg.libXcursor
|
||
|
xorg.libXdamage
|
||
|
xorg.libXinerama
|
||
|
libxkbcommon ];
|
||
|
shellHook = ''
|
||
|
export LC_ALL=C.UTF-8
|
||
|
export XDG_DATA_DIRS=${gsettings-desktop-schemas}/share/gsettings-schemas/${gsettings-desktop-schemas.name}:${gtk4}/share/gsettings-schemas/${gtk4.name}:$XDG_DATA_DIRS
|
||
|
'';
|
||
|
}
|