summary refs log blame commit diff
path: root/pkgs/development/ocaml-modules/atd/default.nix
blob: e4edac5fdc10cd46ba89ba6070fbab84ab4f2f5f (plain) (tree)
1
2
3
4
5
6
7
8
9
10
                                                                                       
 

                      

                    

                               

                         
                 

                                                                    

    
                              
 
                                 

                                                        
                    
                                                

                                                               
                                                        

    
{ lib, 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 lib; {
    homepage = "https://github.com/mjambon/atd";
    description = "Syntax for cross-language type definitions";
    license = licenses.bsd3;
    maintainers = with maintainers; [ aij jwilberding ];
  };
}