Skip to content

Commit

Permalink
Update deps
Browse files Browse the repository at this point in the history
  • Loading branch information
rizo committed Jul 16, 2024
1 parent e11f2fd commit f239099
Show file tree
Hide file tree
Showing 2 changed files with 207 additions and 123 deletions.
12 changes: 9 additions & 3 deletions default.nix
Original file line number Diff line number Diff line change
@@ -1,14 +1,20 @@
{ pkgs ? import <nixpkgs> { } }:

let
ocamlPackages = pkgs.ocaml-ng.ocamlPackages_5_1;
onix = import (builtins.fetchGit {
url = "https://github.com/rizo/onix.git";
rev = "8d3ed79ae8875587a2bdcb9d3cbb445fcfbbf5ce";
}) { inherit pkgs; verbosity = "warning"; };
rev = "2af576afb5ee0f5485deb534697d805b22d8100c";
}) {
inherit pkgs ocamlPackages;
verbosity = "info";
};

in onix.env {
path = ./.;
deps = { "ocaml-base-compiler" = "5.1.0"; };
deps = {
"ocaml-system" = "5.1.1";
};
roots = [ ./helix.opam ];
vars = {
with-dev-setup = true;
Expand Down
Loading

0 comments on commit f239099

Please sign in to comment.