1
1
mirror of https://github.com/the-nix-way/dev-templates synced 2026-03-26 08:31:58 +01:00
github.com_the-nix-way_dev-.../r/flake.nix
2026-03-22 15:27:13 -03:00

52 lines
1.2 KiB
Nix

{
description = "A Nix-flake-based R development environment";
inputs.nixpkgs.url = "https://flakehub.com/f/NixOS/nixpkgs/0.1"; # unstable Nixpkgs
outputs =
{ self, ... }@inputs:
let
supportedSystems = [
"x86_64-linux"
"aarch64-linux"
"aarch64-darwin"
];
forEachSupportedSystem =
f:
inputs.nixpkgs.lib.genAttrs supportedSystems (
system:
f {
inherit system;
pkgs = import inputs.nixpkgs {
inherit system;
overlays = [ inputs.self.overlays.default ];
};
}
);
in
{
overlays.default = final: prev: rec {
rEnv = final.rWrapper.override {
packages = with final.rPackages; [ knitr ];
};
};
devShells = forEachSupportedSystem (
{ pkgs, system }:
{
default = pkgs.mkShellNoCC {
packages = with pkgs; [
rEnv
pandoc
texlive.combined.scheme-full
self.formatter.${system}
];
};
}
);
formatter = forEachSupportedSystem ({ pkgs, ... }: pkgs.nixfmt);
};
}