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

25 lines
637 B
Nix
Raw Normal View History

2020-09-03 01:00:00 +01:00
{ lib, fetchurl, buildDunePackage }:
buildDunePackage rec {
pname = "csexp";
2020-09-23 06:36:17 +01:00
version = "1.3.2";
2020-09-03 01:00:00 +01:00
minimumOCamlVersion = "4.08";
src = fetchurl {
url = "https://github.com/ocaml-dune/csexp/releases/download/${version}/csexp-${version}.tbz";
2020-09-23 06:36:17 +01:00
sha256 = "0jhwrxfjb0x31xj4g4b89fzw34sq19j0rq2hs2zyh1vz4xxl47zj";
2020-09-03 01:00:00 +01:00
};
postPatch = ''
substituteInPlace src/csexp.ml --replace Result.result Result.t
'';
meta = with lib; {
homepage = "https://github.com/ocaml-dune/csexp";
description = "Minimal support for Canonical S-expressions";
license = licenses.mit;
maintainers = [ maintainers.marsam ];
};
}