forked from mirrors/nixpkgs
ncview: init at 2.1.8 (#44778)
This commit is contained in:
parent
33247bce39
commit
237c956b0a
|
@ -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";
|
||||
|
|
25
pkgs/tools/X11/ncview/default.nix
Normal file
25
pkgs/tools/X11/ncview/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
|
@ -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 { };
|
||||
|
|
Loading…
Reference in a new issue