python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / development / ocaml-modules / csexp / default.nix
blob664d9a773ab0ea8008ffc0b3c598ddc1098f2c12
1 { lib, fetchurl, buildDunePackage, result }:
3 buildDunePackage rec {
4   pname = "csexp";
5   version = "1.5.1";
7   src = fetchurl {
8     url = "https://github.com/ocaml-dune/csexp/releases/download/${version}/csexp-${version}.tbz";
9     sha256 = "sha256-1gXkBl+pCliABEDvLzOi2TE5i/LCIGGorLffhFwKrAI=";
10   };
12   minimumOCamlVersion = "4.03";
13   useDune2 = true;
15   propagatedBuildInputs = [
16     result
17   ];
19   meta = with lib; {
20     homepage = "https://github.com/ocaml-dune/csexp/";
21     description = "Minimal support for Canonical S-expressions";
22     license = licenses.mit;
23     maintainers = with maintainers; [ marsam ];
24   };