Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
37 changes: 24 additions & 13 deletions packaging/nix/package-desktop.nix
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,18 @@
pango,
systemd,
wayland,
xorg,
libx11,
libxcomposite,
libxcursor,
libxdamage,
libxext,
libxfixes,
libxi,
libxrandr,
libxrender,
libxscrnsaver,
libxtst,
libxcb,

commandLineArgs ? "",
}:
Expand Down Expand Up @@ -86,18 +97,18 @@ stdenv.mkDerivation (finalAttrs: {
nss
pango
stdenv.cc.cc # libstdc++
xorg.libX11
xorg.libXcomposite
xorg.libXcursor
xorg.libXdamage
xorg.libXext
xorg.libXfixes
xorg.libXi
xorg.libXrandr
xorg.libXrender
xorg.libXScrnSaver
xorg.libXtst
xorg.libxcb
libx11
libxcomposite
libxcursor
libxdamage
libxext
libxfixes
libxi
libxrandr
libxrender
libxscrnsaver
libxtst
libxcb
];

# dlopen'd at runtime (not in DT_NEEDED), so keep them on the wrapper's path.
Expand Down
Loading