summary refs log tree commit diff
path: root/pkgs/tools/X11/ncview/default.nix
blob: 2b2aac5f66b072b5f7574d1eec7cfeef258d71b3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
{ 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 ];
  };
}