json-fortran: init at 8.3.0

This commit is contained in:
Phillip Seeber 2023-03-15 10:42:08 +01:00
parent 7dffac817f
commit da4d161cf9
2 changed files with 39 additions and 0 deletions

View file

@ -0,0 +1,37 @@
{ stdenv, lib, fetchFromGitHub, gfortran, cmake }:
stdenv.mkDerivation rec {
pname = "json-fortran";
version = "8.3.0";
src = fetchFromGitHub {
owner = "jacobwilliams";
repo = pname;
rev = version;
hash = "sha256-96W9bzWEZ3EN4wtnDT3G3pvLdcI4SIhGJWBVPU3rNZ4=";
};
nativeBuildInputs = [
cmake
gfortran
];
cmakeFlags = [
"-DUSE_GNU_INSTALL_CONVENTION=ON"
];
# Due to some misconfiguration in CMake the Fortran modules end up in $out/$out.
# Move them back to the desired location.
postInstall = ''
mv $out/$out/include $out/.
rm -r $out/nix
'';
meta = with lib; {
description = "Modern Fortran JSON API";
homepage = "https://github.com/jacobwilliams/json-fortran";
license = licenses.mit;
platforms = platforms.linux;
maintainers = [ maintainers.sheepforce ];
};
}

View file

@ -20827,6 +20827,8 @@ with pkgs;
jsoncpp = callPackage ../development/libraries/jsoncpp { };
json-fortran = callPackage ../development/libraries/json-fortran { };
jsonnet = callPackage ../development/compilers/jsonnet { };
jsonnet-bundler = callPackage ../development/tools/jsonnet-bundler { };