Skip to content

Commit 98a91fe

Browse files
authored
Prep for 0.2.1 release (#9)
1 parent a45a0af commit 98a91fe

File tree

3 files changed

+7
-3
lines changed

3 files changed

+7
-3
lines changed

CHANGES.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Unreleased
1+
0.2.1 2020-05-16
22
--------------
33

44
- gluten-mirage: Add a Mirage runtime

nix/sources.nix

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
let
44
overlays =
55
builtins.fetchTarball
6-
https://github.com/anmonteiro/nix-overlays/archive/09a979b.tar.gz;
6+
https://github.com/anmonteiro/nix-overlays/archive/0222c505.tar.gz;
77

88
in
99

shell.nix

+5-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
{ release-mode ? false }:
2+
13
let
24
pkgs = import ./nix/sources.nix {};
35
inherit (pkgs) stdenv lib;
@@ -9,7 +11,9 @@ in
911

1012
(mkShell {
1113
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 ]);
1317
}).overrideAttrs (o : {
1418
propagatedBuildInputs = lib.filter
1519
(drv:

0 commit comments

Comments
 (0)