Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
30 lines
542 B
Nix
30 lines
542 B
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitHub,
|
|
cmake,
|
|
qtbase,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
version = "0.9.0";
|
|
pname = "qjson";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "flavio";
|
|
repo = "qjson";
|
|
rev = version;
|
|
sha256 = "1f4wnxzx0qdmxzc7hqk28m0sva7z9p9xmxm6aifvjlp0ha6pmfxs";
|
|
};
|
|
|
|
nativeBuildInputs = [ cmake ];
|
|
buildInputs = [ qtbase ];
|
|
dontWrapQtApps = true;
|
|
|
|
meta = with lib; {
|
|
description = "Lightweight data-interchange format";
|
|
homepage = "https://qjson.sourceforge.net/";
|
|
license = licenses.lgpl21;
|
|
};
|
|
}
|