mirror of
https://git.dodsorf.as/Dandellion/dotfiles.git
synced 2025-01-23 00:44:48 +01:00
21 lines
319 B
Nix
21 lines
319 B
Nix
# Needed for screeps
|
|
# https://github.com/NixOS/nixpkgs/issues/32881
|
|
self: super:
|
|
{
|
|
steam = super.steam.override {
|
|
extraPkgs = super: with super; [
|
|
gnome3.gtk
|
|
zlib
|
|
dbus
|
|
freetype
|
|
glib
|
|
atk
|
|
cairo
|
|
gdk_pixbuf
|
|
pango
|
|
fontconfig
|
|
xorg.libxcb
|
|
];
|
|
};
|
|
}
|