lol

ncview: use xorg.* packages directly instead of xlibsWrapper indirection

Validated as no change in `out` output with `diffoscope`.

+19 -3
+19 -3
pkgs/tools/X11/ncview/default.nix
··· 1 - { lib, stdenv, fetchurl 2 - , netcdf, xlibsWrapper, xorg, udunits, expat 1 + { lib 2 + , stdenv 3 + , fetchurl 4 + , expat 5 + , libpng 6 + , udunits 7 + , netcdf 8 + , xorg 3 9 }: 4 10 5 11 let ··· 14 20 sha256 = "1gliziyxil2fcz85hj6z0jq33avrxdcjs74d500lhxwvgd8drfp8"; 15 21 }; 16 22 17 - buildInputs = [ netcdf xlibsWrapper xorg.libXaw udunits expat ]; 23 + buildInputs = [ 24 + expat 25 + libpng 26 + netcdf 27 + udunits 28 + xorg.libICE 29 + xorg.libSM 30 + xorg.libX11 31 + xorg.libXaw 32 + xorg.libXt 33 + ]; 18 34 19 35 meta = with lib; { 20 36 description = "Visual browser for netCDF format files";