ncview: init at 2.1.8 (#44778)

This commit is contained in:
Jonathan Mettes 2018-08-09 16:41:12 +10:00 committed by xeji
parent 33247bce39
commit 237c956b0a
3 changed files with 32 additions and 0 deletions

View file

@ -1847,6 +1847,11 @@
github = "jluttine";
name = "Jaakko Luttinen";
};
jmettes = {
email = "jonathan@jmettes.com";
github = "jmettes";
name = "Jonathan Mettes";
};
Jo = {
email = "0x4A6F@shackspace.de";
name = "Joachim Ernst";

View file

@ -0,0 +1,25 @@
{ stdenv, fetchurl
, netcdf, x11, xorg, udunits, expat
}:
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 = [ netcdf x11 xorg.libXaw udunits expat ];
meta = with stdenv.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 ];
};
}

View file

@ -17648,6 +17648,8 @@ with pkgs;
ncdc = callPackage ../applications/networking/p2p/ncdc { };
ncview = callPackage ../tools/X11/ncview { } ;
ne = callPackage ../applications/editors/ne { };
nedit = callPackage ../applications/editors/nedit { };