Commit 791a23a0 authored by Sergei Trofimovich's avatar Sergei Trofimovich
Browse files

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

Validated as no change in `out` output with `diffoscope`.
parent a82e6b5d
Loading
Loading
Loading
Loading
+19 −3
Original line number Diff line number Diff line
{ lib, stdenv, fetchurl
, netcdf, xlibsWrapper, xorg, udunits, expat
{ lib
, stdenv
, fetchurl
, expat
, libpng
, udunits
, netcdf
, xorg
}:

let
@@ -14,7 +20,17 @@ in stdenv.mkDerivation {
    sha256 = "1gliziyxil2fcz85hj6z0jq33avrxdcjs74d500lhxwvgd8drfp8";
  };

  buildInputs = [ netcdf xlibsWrapper xorg.libXaw udunits expat ];
  buildInputs = [
    expat
    libpng
    netcdf
    udunits
    xorg.libICE
    xorg.libSM
    xorg.libX11
    xorg.libXaw
    xorg.libXt
  ];

  meta = with lib; {
    description = "Visual browser for netCDF format files";