mensa/flake.nix

62 lines
1.7 KiB
Nix
Raw Permalink Normal View History

2021-10-11 12:22:08 +02:00
{
2023-04-15 00:39:46 +02:00
inputs.dream2nix.url = "github:nix-community/dream2nix";
inputs.devshell.url = "github:numtide/devshell";
inputs.flake-parts.url = "github:hercules-ci/flake-parts";
inputs.treefmt-nix.url = "github:numtide/treefmt-nix";
inputs.pre-commit-hooks-nix.url = "github:cachix/pre-commit-hooks.nix";
inputs.nixpkgs.url = "nixpkgs";
2021-10-11 12:22:08 +02:00
2023-04-15 00:39:46 +02:00
outputs = inputs @ {
flake-parts,
dream2nix,
devshell,
treefmt-nix,
pre-commit-hooks-nix,
...
}:
flake-parts.lib.mkFlake {inherit inputs;} {
imports = [
dream2nix.flakeModuleBeta
devshell.flakeModule
treefmt-nix.flakeModule
pre-commit-hooks-nix.flakeModule
];
systems = [
"x86_64-linux"
"aarch64-linux"
];
perSystem = {
self',
pkgs,
config,
...
}: {
dream2nix.inputs.mensa = {
source = ./.;
projects = fromTOML (builtins.readFile ./projects.toml);
packageOverrides."^.*".updated.overrideAttrs = old: {
buildInputs = with pkgs; [pkg-config openssl];
};
};
packages.mensa = config.dream2nix.outputs.mensa.packages.mensa;
packages.default = self'.packages.mensa;
devShells.default = config.dream2nix.outputs.mensa.devShells.default.overrideAttrs (old: {
buildInputs =
old.buildInputs
++ [
# Additional packages for the shell
config.treefmt.package
pkgs.nil
pkgs.cargo-workspaces
pkgs.rust-analyzer
];
});
treefmt.projectRootFile = "flake.nix";
treefmt.programs = {
rustfmt.enable = true;
alejandra.enable = true;
};
};
};
2021-10-11 12:22:08 +02:00
}