depot/third_party/nixpkgs/pkgs/development/ocaml-modules/csexp/default.nix
Default email 1693fb2285 Project import generated by Copybara.
GitOrigin-RevId: 420f89ceb267b461eed5d025b6c3c0e57703cc5c
2020-10-07 11:15:18 +02:00

22 lines
594 B
Nix

{ lib, fetchurl, buildDunePackage, result }:
buildDunePackage rec {
pname = "csexp";
version = "1.3.2";
minimumOCamlVersion = "4.02.3";
src = fetchurl {
url = "https://github.com/ocaml-dune/csexp/releases/download/${version}/csexp-${version}.tbz";
sha256 = "0jhwrxfjb0x31xj4g4b89fzw34sq19j0rq2hs2zyh1vz4xxl47zj";
};
propagatedBuildInputs = [ result ];
meta = with lib; {
homepage = "https://github.com/ocaml-dune/csexp";
description = "Minimal support for Canonical S-expressions";
license = licenses.mit;
maintainers = [ maintainers.marsam ];
};
}