blob: 30632e1160db8d226399a16d623c50e24e985f3f (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
{ stdenv
, lib
, fetchFromGitHub
, gfortran
, meson
, ninja
, pkg-config
, test-drive
}:
stdenv.mkDerivation rec {
pname = "toml-f";
version = "0.4.2";
src = fetchFromGitHub {
owner = pname;
repo = pname;
rev = "v${version}";
hash = "sha256-+cac4rUNpd2w3yBdH1XoCKdJ9IgOHZioZg8AhzGY0FE=";
};
nativeBuildInputs = [ gfortran meson ninja pkg-config ];
buildInputs = [ test-drive ];
outputs = [ "out" "dev" ];
# tftest-build fails on aarch64-linux
doCheck = !stdenv.hostPlatform.isAarch64;
meta = with lib; {
description = "TOML parser implementation for data serialization and deserialization in Fortran";
license = with licenses; [ asl20 mit ];
homepage = "https://github.com/toml-f/toml-f";
platforms = platforms.linux;
maintainers = [ maintainers.sheepforce ];
};
}
|