Skip to content

Commit

Permalink
Merge pull request #84481 from bcdarwin/fix-sedlex-inputs
Browse files Browse the repository at this point in the history
ocamlPackages.sedlex: fix dependencies
  • Loading branch information
Mic92 authored Apr 6, 2020
2 parents a737f03 + 77901a9 commit d266ad7
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions pkgs/development/ocaml-modules/sedlex/default.nix
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{ stdenv, fetchzip, ocaml, findlib, gen, ppx_tools_versioned }:
{ stdenv, fetchzip, ocaml, findlib, gen, ppx_tools_versioned, ocaml-migrate-parsetree }:

if !stdenv.lib.versionAtLeast ocaml.version "4.02"
then throw "sedlex is not available for OCaml ${ocaml.version}"
Expand All @@ -13,9 +13,9 @@ stdenv.mkDerivation rec {
sha256 = "0phnqyn6mpv5byr1kkphl24y9q9fb2k3xg9yb457h5816q6ya72n";
};

buildInputs = [ ocaml findlib ppx_tools_versioned ];
buildInputs = [ ocaml findlib ];

propagatedBuildInputs = [ gen ];
propagatedBuildInputs = [ gen ocaml-migrate-parsetree ppx_tools_versioned ];

buildFlags = [ "all" "opt" ];

Expand Down

0 comments on commit d266ad7

Please sign in to comment.