2020-09-27 08:33:13 -07:00
|
|
|
{ lib, fetchurl, buildDunePackage, result }:
|
2020-09-02 17:00:00 -07:00
|
|
|
|
|
|
|
buildDunePackage rec {
|
|
|
|
pname = "csexp";
|
2020-09-22 22:36:17 -07:00
|
|
|
version = "1.3.2";
|
2020-09-02 17:00:00 -07:00
|
|
|
|
2021-01-01 02:06:18 -08:00
|
|
|
useDune2 = true;
|
|
|
|
|
2020-09-27 08:33:13 -07:00
|
|
|
minimumOCamlVersion = "4.02.3";
|
2020-09-02 17:00:00 -07:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "https://github.com/ocaml-dune/csexp/releases/download/${version}/csexp-${version}.tbz";
|
2020-09-22 22:36:17 -07:00
|
|
|
sha256 = "0jhwrxfjb0x31xj4g4b89fzw34sq19j0rq2hs2zyh1vz4xxl47zj";
|
2020-09-02 17:00:00 -07:00
|
|
|
};
|
|
|
|
|
2020-09-27 08:33:13 -07:00
|
|
|
propagatedBuildInputs = [ result ];
|
2020-09-02 17:00:00 -07:00
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
homepage = "https://github.com/ocaml-dune/csexp";
|
|
|
|
description = "Minimal support for Canonical S-expressions";
|
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = [ maintainers.marsam ];
|
|
|
|
};
|
|
|
|
}
|