Skip to content

Commit 4450327

Browse files
committedFeb 13, 2017
flow: pin ocaml to ocaml_4_02
1 parent 8378afa commit 4450327

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed
 

‎pkgs/development/tools/analysis/flow/default.nix

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
{ stdenv, fetchFromGitHub, lib, ocaml_4_02, libelf, cf-private, CoreServices }:
1+
{ stdenv, fetchFromGitHub, lib, ocaml, libelf, cf-private, CoreServices }:
22

33
with lib;
44

@@ -18,7 +18,7 @@ stdenv.mkDerivation rec {
1818
cp bin/flow $out/bin/
1919
'';
2020

21-
buildInputs = [ ocaml_4_02 libelf ]
21+
buildInputs = [ ocaml libelf ]
2222
++ optionals stdenv.isDarwin [ cf-private CoreServices ];
2323

2424
meta = with stdenv.lib; {

‎pkgs/top-level/all-packages.nix

+2-1
Original file line numberDiff line numberDiff line change
@@ -6363,6 +6363,7 @@ with pkgs;
63636363
flow = callPackage ../development/tools/analysis/flow {
63646364
inherit (darwin.apple_sdk.frameworks) CoreServices;
63656365
inherit (darwin) cf-private;
6366+
ocaml = ocaml_4_02;
63666367
};
63676368

63686369
framac = callPackage ../development/tools/analysis/frama-c { };
@@ -15600,7 +15601,7 @@ with pkgs;
1560015601
wmii_hg = callPackage ../applications/window-managers/wmii-hg { };
1560115602

1560215603
wordnet = callPackage ../applications/misc/wordnet { };
15603-
15604+
1560415605
worker = callPackage ../applications/misc/worker { };
1560515606

1560615607
workrave = callPackage ../applications/misc/workrave {

0 commit comments

Comments
 (0)