No description
Find a file
dependabot[bot] 641b8b1993
Bump actions/checkout from 6 to 7
Bumps [actions/checkout](https://github.com/actions/checkout) from 6 to 7.
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](https://github.com/actions/checkout/compare/v6...v7)

---
updated-dependencies:
- dependency-name: actions/checkout
  dependency-version: '7'
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
2026-06-22 13:33:51 +00:00
.github Bump actions/checkout from 6 to 7 2026-06-22 13:33:51 +00:00
packages Change inheritance of summclust to franPackages 2026-06-13 09:23:33 +10:00
test Remove httpgd library and associated calls 2026-02-19 11:51:45 +11:00
versions [create-pull-request] automated change 2026-04-02 05:04:45 +00:00
.gitignore added summclust 2026-01-19 13:50:08 +11:00
flake.lock [create-pull-request] automated change 2026-04-02 05:04:45 +00:00
flake.nix Update flake.nix 2026-06-13 09:22:06 +10:00
README.md Update README.md 2026-06-13 18:05:02 +10:00

Usage

Based on the-nix-way

{
  description = "A Nix-flake-based R development environment";

  inputs.nixpkgs.url = "https://flakehub.com/f/NixOS/nixpkgs/0.1";
  inputs.fran.url = "github:dwinkler1/fran";
  inputs.fran.inputs.nixpkgs.follows = "nixpkgs";

  outputs = inputs: let
    supportedSystems = ["x86_64-linux" "aarch64-linux" "x86_64-darwin" "aarch64-darwin"];
    forEachSupportedSystem = f:
      inputs.nixpkgs.lib.genAttrs supportedSystems (system:
        f {
          pkgs = import inputs.nixpkgs {
            inherit system;
            overlays = [inputs.fran.overlays.default];
          };
        });
    mkR = inputs.fran.lib.mkR;
  in {
    devShells = forEachSupportedSystem ({pkgs}: {
      default = pkgs.mkShell {
        packages = with pkgs; [
          (mkR {
            inherit pkgs;
            packages = [rPackages.data_table franPackages.fwildclusterboot];
          })
        ];
      };
    });
  };
}