Ld : Disable temporarely.
This commit is contained in:
parent
7435ba9a69
commit
c254fa0aa2
|
@ -106,7 +106,7 @@
|
||||||
./module/common/Font.nix
|
./module/common/Font.nix
|
||||||
./module/common/Git.nix
|
./module/common/Git.nix
|
||||||
./module/common/Kernel.nix
|
./module/common/Kernel.nix
|
||||||
./module/common/Ld.nix
|
# ./module/common/Ld.nix
|
||||||
./module/common/Locale.nix
|
./module/common/Locale.nix
|
||||||
./module/common/Network.nix
|
./module/common/Network.nix
|
||||||
./module/common/Nix.nix
|
./module/common/Nix.nix
|
||||||
|
|
|
@ -3,7 +3,32 @@
|
||||||
enable = true;
|
enable = true;
|
||||||
package = pkgs.nix-ld;
|
package = pkgs.nix-ld;
|
||||||
libraries = with pkgs; [
|
libraries = with pkgs; [
|
||||||
# Add any missing dynamic libraries for unpackaged programs here, NOT in environment.systemPackages
|
# Add any missing dynamic libraries for unpackaged programs here, NOT in environment.systemPackages.
|
||||||
|
alsa-lib
|
||||||
|
at-spi2-atk
|
||||||
|
atk
|
||||||
|
cairo
|
||||||
|
cups
|
||||||
|
dbus
|
||||||
|
expat
|
||||||
|
glib
|
||||||
|
glibc
|
||||||
|
gtk3
|
||||||
|
libGL
|
||||||
|
libdrm
|
||||||
|
libxkbcommon
|
||||||
|
mesa
|
||||||
|
nspr
|
||||||
|
nss
|
||||||
|
pango
|
||||||
|
sqlite
|
||||||
|
xorg.libX11
|
||||||
|
xorg.libXcomposite
|
||||||
|
xorg.libXdamage
|
||||||
|
xorg.libXext
|
||||||
|
xorg.libXfixes
|
||||||
|
xorg.libXrandr
|
||||||
|
xorg.libxcb
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Reference in a new issue