forked from mirrors/nixpkgs
reason: 3.3.3 -> 3.3.7 (#49325)
* reason: 3.3.3 -> 3.3.7 * reason: makeWrapper needed at build time only moved makeWrapper from buildInputs to nativeBuildInputs
This commit is contained in:
parent
07db5f1c8c
commit
8ef70a0b29
|
@ -4,18 +4,20 @@
|
|||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "ocaml${ocaml.version}-reason-${version}";
|
||||
version = "3.3.3";
|
||||
version = "3.3.7";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "facebook";
|
||||
repo = "reason";
|
||||
rev = "fefe5e4db3a54a7946c2220ee037dd2f407011c9";
|
||||
sha256 = "1x0dbacgq9pa36zgzwrc0gm14wbb6v27y9bf7wcwk55a1ck0am18";
|
||||
rev = "4d20e5b535c29c5ef1283e65958b32996e449e5a";
|
||||
sha256 = "0f3pb61wg58g8f3wcnp1h4gpmnwmp7bq0cnqdfwldmh9cs0dqyfk";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ makeWrapper ];
|
||||
|
||||
propagatedBuildInputs = [ menhir merlin_extend ppx_tools_versioned ];
|
||||
|
||||
buildInputs = [ makeWrapper ocaml findlib dune utop menhir ];
|
||||
buildInputs = [ ocaml findlib dune utop menhir ];
|
||||
|
||||
buildFlags = [ "build" ]; # do not "make tests" before reason lib is installed
|
||||
|
||||
|
|
Loading…
Reference in a new issue