Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

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

Merged
merged 1 commit into from
Nov 14, 2022
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
22 changes: 19 additions & 3 deletions pkgs/tools/X11/ncview/default.nix
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
{ lib, stdenv, fetchurl
, netcdf, xlibsWrapper, xorg, udunits, expat
{ lib
, stdenv
, fetchurl
, expat
, libpng
, udunits
, netcdf
, xorg
}:

let
Expand All @@ -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";
Expand Down