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

                                                     

  

                        
                    
 
                               
 
                  
                                                                                                 
                                                                 
    
 
                                                                                    
 
                  
 
                    
                                                           
                                                        


                                       
 
{ lib, fetchurl, buildDunePackage, cmdliner
, rresult, astring, fmt, logs, bos, fpath, emile, uri
}:

buildDunePackage rec {
  pname   = "functoria";
  version = "4.3.6";

  minimalOCamlVersion = "4.08";

  src = fetchurl {
    url = "https://github.com/mirage/mirage/releases/download/v${version}/mirage-${version}.tbz";
    hash = "sha256-i/5sZHfxECoKYMdGje+U21GWxJ6dDZreVcQGtbuo4SE=";
  };

  propagatedBuildInputs = [ cmdliner rresult astring fmt logs bos fpath emile uri ];

  doCheck = false;

  meta = with lib; {
    description = "A DSL to organize functor applications";
    homepage    = "https://github.com/mirage/functoria";
    license     = licenses.isc;
    maintainers = [ maintainers.vbgl ];
  };
}