about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/ocaml-modules/csexp/default.nix
blob: 610de2cb8adab5bb9956513ff07f3e617f0d8d03 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{ lib, fetchurl, buildDunePackage }:

buildDunePackage rec {
  pname = "csexp";
  version = "1.3.2";

  minimumOCamlVersion = "4.08";

  src = fetchurl {
    url = "https://github.com/ocaml-dune/csexp/releases/download/${version}/csexp-${version}.tbz";
    sha256 = "0jhwrxfjb0x31xj4g4b89fzw34sq19j0rq2hs2zyh1vz4xxl47zj";
  };

  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 ];
  };
}