Skip to content

Commit

Permalink
Fix flake 😳
Browse files Browse the repository at this point in the history
  • Loading branch information
tesujimath committed Oct 17, 2024
1 parent 7a3947b commit 6ab0dff
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
pkgs = import nixpkgs {
inherit system;
};
bash_env_json =
bash-env-json =
let
inherit (pkgs) bash coreutils gnused jq makeWrapper writeShellScriptBin;
inherit (pkgs.lib) makeBinPath;
Expand All @@ -39,17 +39,17 @@
ci-packages =
[
bats
bash_env_json
bash-env-json
];
in
{
default = mkShell { buildInputs = ci-packages ++ [ bashInteractive ]; };

ci = mkShell { buildInputs = ci-packages; };

packages.default = bash_env_json;
};

packages.default = bash-env-json;
}
);
}

0 comments on commit 6ab0dff

Please sign in to comment.