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

                                                 
                    

                  
                                                                                                            
                                                                    

    
                                             
                                 
 

                              
                                              
 
                    
                                                         
                                                                                                             
                              
                                           
                                                        

    
{ lib, stdenv, fetchurl, pcre, ocaml, findlib, ocamlbuild }:

stdenv.mkDerivation rec {
  name = "ocaml${ocaml.version}-pcre-${version}";
  version = "7.2.3";

  src = fetchurl {
    url = "https://github.com/mmottl/pcre-ocaml/releases/download/v${version}/pcre-ocaml-${version}.tar.gz";
    sha256 = "0rj6dw79px4sj2kq0iss2nzq3rnsn9wivvc0f44wa1mppr6njfb3";
  };

  buildInputs = [ ocaml findlib ocamlbuild ];
  propagatedBuildInputs = [pcre];

  createFindlibDestdir = true;

  dontConfigure = true;	# Skip configure phase

  meta = with lib; {
    homepage = "https://bitbucket.org/mmottl/pcre-ocaml";
    description = "An efficient C-library for pattern matching with Perl-style regular expressions in OCaml";
    license = licenses.lgpl21;
    platforms = ocaml.meta.platforms or [];
    maintainers = with maintainers; [ maggesi vbmithr ];
  };
}