Merge pull request #316167 from vbgl/ocaml-yojson-2.2.0

ocamlPackages.yojson: 2.1.2 → 2.2.0
This commit is contained in:
Ulrik Strid 2024-05-31 19:16:33 +02:00 committed by GitHub
commit 9f52db80b2
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,15 +1,14 @@
{ lib, fetchurl, buildDunePackage, cppo, seq }:
{ lib, fetchurl, buildDunePackage, seq }:
buildDunePackage rec {
pname = "yojson";
version = "2.1.2";
version = "2.2.0";
src = fetchurl {
url = "https://github.com/ocaml-community/yojson/releases/download/${version}/yojson-${version}.tbz";
hash = "sha256-WfLxq7/Ip8y9v2CIlOXHXop2AG40iZJURG+D4gDftPk=";
hash = "sha256-v9wzvvMUG7qaj6ZqiFtUsp9r+rRQBAiE3Yz3zex4RRk=";
};
nativeBuildInputs = [ cppo ];
propagatedBuildInputs = [ seq ];
meta = with lib; {