nixpkgs/pkgs/development/libraries/netcdf-cxx4/default.nix
Silvan Mosberger f5fa5fa4d6 pkgs: refactor needless quoting of homepage meta attribute (#27809)
* pkgs: refactor needless quoting of homepage meta attribute

A lot of packages are needlessly quoting the homepage meta attribute
(about 1400, 22%), this commit refactors all of those instances.

* pkgs: Fixing some links that were wrongfully unquoted in the previous
commit

* Fixed some instances
2017-08-01 22:03:30 +02:00

21 lines
573 B
Nix

{ stdenv, fetchurl, netcdf, hdf5, curl }:
stdenv.mkDerivation rec {
name = "netcdf-cxx4-${version}";
version = "4.2.1";
src = fetchurl {
url = "https://github.com/Unidata/netcdf-cxx4/archive/v${version}.tar.gz";
sha256 = "1g0fsmz59dnjib4a7r899lm99j3z6yxsw10c0wlihclzr6znmmds";
};
buildInputs = [ netcdf hdf5 curl ];
doCheck = true;
meta = {
description = "C++ API to manipulate netcdf files";
homepage = http://www.unidata.ucar.edu/software/netcdf/;
license = stdenv.lib.licenses.free;
platforms = stdenv.lib.platforms.unix;
};
}