From feae80e5e4236654ea5a843197e05d9211869750 Mon Sep 17 00:00:00 2001 From: "Claudius \"keldu\" Holeksa" Date: Wed, 8 Nov 2023 14:07:58 +0100 Subject: codec-netcdf: Basic netcdf implementation --- c++/codec-netcdf/.nix/derivation.nix | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 c++/codec-netcdf/.nix/derivation.nix (limited to 'c++/codec-netcdf/.nix/derivation.nix') diff --git a/c++/codec-netcdf/.nix/derivation.nix b/c++/codec-netcdf/.nix/derivation.nix new file mode 100644 index 0000000..770942e --- /dev/null +++ b/c++/codec-netcdf/.nix/derivation.nix @@ -0,0 +1,33 @@ +{ lib +, stdenv +, scons +, clang +, clang-tools +, version +, forstio +, netcdf +}: + +let + +in stdenv.mkDerivation { + pname = "forstio-codec-netcdf"; + inherit version; + src = ./..; + + enableParallelBuilding = true; + + nativeBuildInputs = [ + scons + clang-tools + ]; + + buildInputs = [ + forstio.core + forstio.async + forstio.codec + netcdf + ]; + + outputs = ["out" "dev"]; +} -- cgit v1.2.3