This reverts commit 65a333600d5c88a98d674f637d092807cfc12253. This wasn't tested for correctness with something like fodwatch [0], and should not have been (self-)merged so quickly, especially without further review. It also resulted in the breakage of at least one package [1] (and that's the one we know of and was caught). A few packages that were updated in between this commit and this revert were not reverted back to using `rev`, but other than that, this is a 1:1 revert. [0]: https://codeberg.org/raphaelr/fodwatch [1]: https://github.com/NixOS/nixpkgs/pull/396904 / 758551e4587d75882aebc21a04bee960418f8ce9
57 lines
1.0 KiB
Nix
57 lines
1.0 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitHub,
|
|
netcdf,
|
|
hdf5,
|
|
curl,
|
|
cmake,
|
|
ninja,
|
|
}:
|
|
stdenv.mkDerivation rec {
|
|
pname = "netcdf-cxx4";
|
|
version = "4.3.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "Unidata";
|
|
repo = "netcdf-cxx4";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-GZ6n7dW3l8Kqrk2Xp2mxRTUWWQj0XEd2LDTG9EtrfhY=";
|
|
};
|
|
|
|
patches = [
|
|
# This fix is included upstream, remove with next upgrade
|
|
./cmake-h5free.patch
|
|
./netcdf.patch
|
|
];
|
|
|
|
preConfigure = ''
|
|
appendToVar cmakeFlags "-Dabs_top_srcdir=$(readlink -f ./)"
|
|
'';
|
|
|
|
nativeBuildInputs = [
|
|
cmake
|
|
ninja
|
|
];
|
|
buildInputs = [
|
|
netcdf
|
|
hdf5
|
|
curl
|
|
];
|
|
|
|
doCheck = true;
|
|
enableParallelChecking = false;
|
|
preCheck = ''
|
|
export HDF5_PLUGIN_PATH=${netcdf}/lib/hdf5-plugins
|
|
'';
|
|
|
|
meta = {
|
|
description = "C++ API to manipulate netcdf files";
|
|
mainProgram = "ncxx4-config";
|
|
homepage = "https://www.unidata.ucar.edu/software/netcdf/";
|
|
license = lib.licenses.free;
|
|
platforms = lib.platforms.unix;
|
|
broken = stdenv.hostPlatform.isDarwin;
|
|
};
|
|
}
|