mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-02 03:43:06 +00:00
791a23a00a
Validated as no change in `out` output with `diffoscope`.
42 lines
727 B
Nix
42 lines
727 B
Nix
{ lib
|
|
, stdenv
|
|
, fetchurl
|
|
, expat
|
|
, libpng
|
|
, udunits
|
|
, netcdf
|
|
, xorg
|
|
}:
|
|
|
|
let
|
|
pname = "ncview";
|
|
version = "2.1.8";
|
|
|
|
in stdenv.mkDerivation {
|
|
name = "${pname}-${version}";
|
|
|
|
src = fetchurl {
|
|
url = "ftp://cirrus.ucsd.edu/pub/ncview/ncview-2.1.8.tar.gz";
|
|
sha256 = "1gliziyxil2fcz85hj6z0jq33avrxdcjs74d500lhxwvgd8drfp8";
|
|
};
|
|
|
|
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";
|
|
homepage = "http://meteora.ucsd.edu/~pierce/ncview_home_page.html";
|
|
license = licenses.gpl3;
|
|
maintainers = with maintainers; [ jmettes ];
|
|
};
|
|
}
|