mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 14:26:33 +01:00
62 lines
1.2 KiB
Nix
62 lines
1.2 KiB
Nix
{ antlr2
|
|
, coreutils
|
|
, curl
|
|
, fetchFromGitHub
|
|
, flex
|
|
, gsl
|
|
, lib
|
|
, libtool
|
|
, netcdf
|
|
, netcdfcxx4
|
|
, stdenv
|
|
, udunits
|
|
, which
|
|
}:
|
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "nco";
|
|
version = "5.2.8";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "nco";
|
|
repo = "nco";
|
|
rev = finalAttrs.version;
|
|
hash = "sha256-FTaXgBmDlQv75roeJo4dJyJCpzOj9ilJo2hdxDnyjno=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
antlr2
|
|
flex
|
|
which
|
|
];
|
|
|
|
buildInputs = [
|
|
coreutils
|
|
curl
|
|
gsl
|
|
netcdf
|
|
netcdfcxx4
|
|
udunits
|
|
];
|
|
|
|
postPatch = ''
|
|
substituteInPlace src/nco/nco_fl_utl.c \
|
|
--replace "/bin/cp" "${coreutils}/bin/cp"
|
|
|
|
substituteInPlace src/nco/nco_fl_utl.c \
|
|
--replace "/bin/mv" "${coreutils}/bin/mv"
|
|
'';
|
|
|
|
makeFlags = lib.optionals stdenv.isDarwin [ "LIBTOOL=${libtool}/bin/libtool" ];
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
meta = {
|
|
description = "NetCDF Operator toolkit";
|
|
homepage = "https://nco.sourceforge.net/";
|
|
license = lib.licenses.bsd3;
|
|
longDescription = "The NCO (netCDF Operator) toolkit manipulates and analyzes data stored in netCDF-accessible formats, including DAP, HDF4, and HDF5";
|
|
maintainers = with lib.maintainers; [ bzizou ];
|
|
platforms = lib.platforms.unix;
|
|
};
|
|
})
|