Skip to content

Commit

Permalink
chore(nix): fix warnings
Browse files Browse the repository at this point in the history
use "*" instead of null as recommended by opam-nix

Signed-off-by: Rudi Grinberg <[email protected]>

ps-id: fc183cbc-f3ad-4f64-a011-270b186de3db
  • Loading branch information
rgrinberg committed Oct 1, 2022
1 parent 5c35106 commit b2cd607
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -24,15 +24,15 @@
pkgs = nixpkgs.legacyPackages.${system};
on = opam-nix.lib.${system};
localPackages = {
jsonrpc = null;
lsp = null;
jsonrpc = "*";
lsp = "*";
};
devPackages = {
menhir = null;
ppx_yojson_conv = null;
cinaps = null;
ppx_expect = null;
ocamlformat-rpc = null;
menhir = "*";
ppx_yojson_conv = "*";
cinaps = "*";
ppx_expect = "*";
ocamlformat-rpc = "*";
ocamlfind = "1.9.2";
};
allPackages = localPackages // devPackages;
Expand Down

0 comments on commit b2cd607

Please sign in to comment.