toml-f: build with meson, expand platforms to all linux
This commit is contained in:
parent
81b9f04b48
commit
760faab4ec
1 changed files with 5 additions and 13 deletions
|
@ -2,7 +2,9 @@
|
||||||
, lib
|
, lib
|
||||||
, fetchFromGitHub
|
, fetchFromGitHub
|
||||||
, gfortran
|
, gfortran
|
||||||
, cmake
|
, meson
|
||||||
|
, ninja
|
||||||
|
, pkg-config
|
||||||
, test-drive
|
, test-drive
|
||||||
}:
|
}:
|
||||||
|
|
||||||
|
@ -17,29 +19,19 @@ stdenv.mkDerivation rec {
|
||||||
hash = "sha256-+cac4rUNpd2w3yBdH1XoCKdJ9IgOHZioZg8AhzGY0FE=";
|
hash = "sha256-+cac4rUNpd2w3yBdH1XoCKdJ9IgOHZioZg8AhzGY0FE=";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [ gfortran cmake ];
|
nativeBuildInputs = [ gfortran meson ninja pkg-config ];
|
||||||
|
|
||||||
buildInputs = [ test-drive ];
|
buildInputs = [ test-drive ];
|
||||||
|
|
||||||
outputs = [ "out" "dev" ];
|
outputs = [ "out" "dev" ];
|
||||||
|
|
||||||
# Fix the Pkg-Config files for doubled store paths
|
|
||||||
postPatch = ''
|
|
||||||
substituteInPlace config/template.pc \
|
|
||||||
--replace "\''${prefix}/" ""
|
|
||||||
'';
|
|
||||||
|
|
||||||
cmakeFlags = [
|
|
||||||
"-DBUILD_SHARED_LIBS=${if stdenv.hostPlatform.isStatic then "OFF" else "ON"}"
|
|
||||||
];
|
|
||||||
|
|
||||||
doCheck = true;
|
doCheck = true;
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "TOML parser implementation for data serialization and deserialization in Fortran";
|
description = "TOML parser implementation for data serialization and deserialization in Fortran";
|
||||||
license = with licenses; [ asl20 mit ];
|
license = with licenses; [ asl20 mit ];
|
||||||
homepage = "https://github.com/toml-f/toml-f";
|
homepage = "https://github.com/toml-f/toml-f";
|
||||||
platforms = [ "x86_64-linux" ];
|
platforms = platforms.linux;
|
||||||
maintainers = [ maintainers.sheepforce ];
|
maintainers = [ maintainers.sheepforce ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue