Skip to content

Commit

Permalink
Merge pull request #198221 from trofi/ion3-without-xlibsWrapper
Browse files Browse the repository at this point in the history
ion3: use xorg.* packages directly instead of xlibsWrapper indirection
  • Loading branch information
trofi authored Oct 29, 2022
2 parents 16c0450 + 2f1bcfc commit bcaa0fb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pkgs/applications/window-managers/ion-3/default.nix
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{ lib, stdenv, fetchurl, xlibsWrapper, lua, gettext, groff }:
{ lib, stdenv, fetchurl, lua, gettext, groff, libICE, libSM, libX11, libXext }:

stdenv.mkDerivation rec {
pname = "ion";
Expand All @@ -9,7 +9,7 @@ stdenv.mkDerivation rec {
sha256 = "1nkks5a95986nyfkxvg2rik6zmwx0lh7szd5fji7yizccwzc9xns";
};

buildInputs = [ xlibsWrapper lua gettext groff ];
buildInputs = [ libICE libSM libX11 libXext lua gettext groff ];

buildFlags = [ "LUA_DIR=${lua}" "X11_PREFIX=/no-such-path" "PREFIX=\${out}" ];

Expand Down

0 comments on commit bcaa0fb

Please sign in to comment.