Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

netcdfcxx4: 4.3.0 -> 4.3.1 #69692

Merged
merged 4 commits into from May 2, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
15 changes: 11 additions & 4 deletions pkgs/development/libraries/netcdf-cxx4/default.nix
@@ -1,15 +1,22 @@
{ lib, stdenv, fetchurl, netcdf, hdf5, curl }:
{ lib, stdenv, fetchzip, netcdf, hdf5, curl, cmake, ninja }:
stdenv.mkDerivation rec {
pname = "netcdf-cxx4";
version = "4.3.0";
version = "4.3.1";

src = fetchurl {
src = fetchzip {
url = "https://github.com/Unidata/netcdf-cxx4/archive/v${version}.tar.gz";
sha256 = "13zi8cbk18gggx1c12a580wdsbl714lw68a1wg7c86x0sybirni5";
sha256 = "05kydd5z9iil5iv4fp7l11cicda5n5lsg5sdmsmc55xpspnsg7hr";
};

preConfigure = ''
cmakeFlags+="-Dabs_top_srcdir=$(readlink -f ./)"
'';

nativeBuildInputs = [ cmake ninja ];
buildInputs = [ netcdf hdf5 curl ];

doCheck = true;
enableParallelChecking = false;

meta = {
description = "C++ API to manipulate netcdf files";
Expand Down