nixpkgs/pkgs/development/ocaml-modules/yojson/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

23 lines
648 B
Nix
Raw Normal View History

{ lib, fetchurl, buildDunePackage, cppo, seq }:
2017-10-22 06:29:13 +00:00
buildDunePackage rec {
pname = "yojson";
2023-12-17 08:18:44 +00:00
version = "2.1.2";
src = fetchurl {
url = "https://github.com/ocaml-community/yojson/releases/download/${version}/yojson-${version}.tbz";
2023-12-17 08:18:44 +00:00
hash = "sha256-WfLxq7/Ip8y9v2CIlOXHXop2AG40iZJURG+D4gDftPk=";
};
nativeBuildInputs = [ cppo ];
propagatedBuildInputs = [ seq ];
meta = with lib; {
description = "An optimized parsing and printing library for the JSON format";
homepage = "https://github.com/ocaml-community/${pname}";
license = licenses.bsd3;
maintainers = [ maintainers.vbgl ];
mainProgram = "ydump";
};
}