links2: remove with statements

This commit is contained in:
Philip Taron
2024-08-18 06:31:13 -07:00
parent 642bfd678c
commit bc794b796b
@@ -16,11 +16,11 @@ stdenv.mkDerivation (finalAttrs: {
hash = "sha256-IqqWwLOOGm+PftnXpBZ6R/w3JGCXdZ72BZ7Pj56teZg=";
};
buildInputs = with lib;
buildInputs =
[ libev librsvg libpng libjpeg libtiff libavif openssl xz bzip2 zlib ]
++ optionals stdenv.isLinux [ gpm ]
++ optionals enableX11 [ libX11 libXau libXt ]
++ optionals enableDirectFB [ directfb ];
++ lib.optionals stdenv.isLinux [ gpm ]
++ lib.optionals enableX11 [ libX11 libXau libXt ]
++ lib.optionals enableDirectFB [ directfb ];
nativeBuildInputs = [ pkg-config bzip2 ];