My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
nomicon/pkgs/development/ocaml-modules/atd/default.nix

28 lines
706 B

{ stdenv, menhir, easy-format, fetchFromGitHub, buildDunePackage, which, biniou, yojson }:
buildDunePackage rec {
pname = "atd";
version = "2.0.0";
minimumOCamlVersion = "4.02";
src = fetchFromGitHub {
owner = "mjambon";
repo = pname;
rev = version;
sha256 = "0alzmk97rxg7s6irs9lvf89dy9n3r769my5n4j9p9qyigcdgjaia";
};
createFindlibDestdir = true;
buildInputs = [ which menhir ];
propagatedBuildInputs = [ easy-format biniou yojson ];
meta = with stdenv.lib; {
homepage = "https://github.com/mjambon/atd";
description = "Syntax for cross-language type definitions";
license = licenses.bsd3;
maintainers = with maintainers; [ aij jwilberding ];
};
}