File tree 3 files changed +7
-3
lines changed
3 files changed +7
-3
lines changed Original file line number Diff line number Diff line change 1
- Unreleased
1
+ 0.2.1 2020-05-16
2
2
--------------
3
3
4
4
- gluten-mirage: Add a Mirage runtime
Original file line number Diff line number Diff line change 3
3
let
4
4
overlays =
5
5
builtins . fetchTarball
6
- https://github.com/anmonteiro/nix-overlays/archive/09a979b .tar.gz ;
6
+ https://github.com/anmonteiro/nix-overlays/archive/0222c505 .tar.gz ;
7
7
8
8
in
9
9
Original file line number Diff line number Diff line change
1
+ { release-mode ? false } :
2
+
1
3
let
2
4
pkgs = import ./nix/sources.nix { } ;
3
5
inherit ( pkgs ) stdenv lib ;
9
11
10
12
( mkShell {
11
13
inputsFrom = lib . attrValues glutenDrvs ;
12
- buildInputs = with ocamlPackages ; [ merlin utop ocamlformat ] ;
14
+ buildInputs =
15
+ ( if release-mode then [ ocamlPackages . dune-release git opam ] else [ ] )
16
+ ++ ( with ocamlPackages ; [ merlin utop ocamlformat ] ) ;
13
17
} ) . overrideAttrs ( o : {
14
18
propagatedBuildInputs = lib . filter
15
19
( drv :
You can’t perform that action at this time.
0 commit comments