nixpkgs/pkgs/development/ocaml-modules/ulex/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

43 lines
1021 B
Nix
Raw Permalink Normal View History

{ stdenv, lib, fetchFromGitHub, ocaml, findlib, ocamlbuild, camlp4 }:
let
pname = "ulex";
2017-11-29 18:58:56 +00:00
param =
if lib.versionAtLeast ocaml.version "4.02" then {
2017-11-29 18:58:56 +00:00
version = "1.2";
sha256 = "08yf2x9a52l2y4savjqfjd2xy4pjd1rpla2ylrr9qrz1drpfw4ic";
} else {
version = "1.1";
sha256 = "0cmscxcmcxhlshh4jd0lzw5ffzns12x3bj7h27smbc8waxkwffhl";
};
in
2016-10-05 07:32:30 +00:00
stdenv.mkDerivation rec {
2017-11-29 18:58:56 +00:00
name = "ocaml${ocaml.version}-${pname}-${version}";
inherit (param) version;
2017-11-29 18:58:56 +00:00
src = fetchFromGitHub {
owner = "whitequark";
repo = pname;
rev = "v${version}";
inherit (param) sha256;
};
createFindlibDestdir = true;
nativeBuildInputs = [ ocaml findlib ocamlbuild camlp4 ];
propagatedBuildInputs = [ camlp4 ];
strictDeps = true;
buildFlags = [ "all" "all.opt" ];
meta = {
2017-11-29 18:58:56 +00:00
inherit (src.meta) homepage;
description = "Lexer generator for Unicode and OCaml";
license = lib.licenses.mit;
inherit (ocaml.meta) platforms;
maintainers = [ lib.maintainers.roconnor ];
};
}