make shell work

This commit is contained in:
2023-04-03 16:43:34 +03:00
parent f44e8948e2
commit aeedea5d16
9 changed files with 12 additions and 9 deletions

View File

@@ -35,6 +35,16 @@
};
checks = builtins.mapAttrs (system: deployLib: deployLib.deployChecks self.deploy) deploy-rs.lib;
};
}
// flake-utils.lib.eachDefaultSystem (system:
let
pkgs = import nixpkgs { inherit system; };
in
{
devShells.default = with pkgs; mkShell {
name = "rules_nixpkgs_shell";
packages = [ bash ];
};
});
}