Skip to content

Commit

Permalink
update cli to latest master
Browse files Browse the repository at this point in the history
  • Loading branch information
nrdxp committed Nov 30, 2021
1 parent d47a9c8 commit 1f3251c
Show file tree
Hide file tree
Showing 3 changed files with 218 additions and 6 deletions.
215 changes: 213 additions & 2 deletions flake.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 4 additions & 3 deletions flake.nix
Expand Up @@ -4,14 +4,15 @@
inputs = {
utils.url = "github:kreisys/flake-utils";
bitte.url = "github:input-output-hk/bitte";
cli.url = "github:input-output-hk/bitte-cli";
nixpkgs-unstable.url = "nixpkgs/nixpkgs-unstable";
nixpkgs.follows = "bitte/nixpkgs";
nixpkgs.follows = "cli/nixpkgs";
bitte-ci.url = "github:input-output-hk/bitte-ci";
bitte-ci-frontend.follows = "bitte-ci/bitte-ci-frontend";
ops-lib.url = "github:input-output-hk/ops-lib/zfs-image?dir=zfs";
};

outputs = { self, nixpkgs, utils, bitte, ... }@inputs:
outputs = { self, nixpkgs, utils, bitte, cli, ... }@inputs:
utils.lib.simpleFlake {
nixpkgs = nixpkgs // {
lib = nixpkgs.lib // {
Expand All @@ -22,7 +23,7 @@
};
systems = [ "x86_64-linux" ];

preOverlays = [ bitte ];
preOverlays = [ bitte cli.overlay ];
overlay = import ./overlay.nix inputs;

extraOutputs = let
Expand Down
2 changes: 1 addition & 1 deletion overlay.nix
Expand Up @@ -19,7 +19,7 @@ in {
nix = final.nixFlakes;
};

devShell = final.bitteShellCompat {
devShell = final.bitteShell {
inherit (inputs) self;
extraPackages = [ final.cue ];
cluster = "plutus-playground";
Expand Down

0 comments on commit 1f3251c

Please sign in to comment.