nixp-meta/flake.nix

112 lines
2.9 KiB
Nix
Raw Normal View History

2024-11-11 17:43:58 +01:00
{
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
devshell = {
url = "github:numtide/devshell";
inputs.nixpkgs.follows = "nixpkgs";
};
pre-commit-hooks.url = "github:cachix/git-hooks.nix";
flake-parts.url = "github:hercules-ci/flake-parts";
treefmt-nix.url = "github:numtide/treefmt-nix";
nci.url = "github:yusdacra/nix-cargo-integration";
};
outputs =
inputs:
inputs.flake-parts.lib.mkFlake { inherit inputs; } {
imports = [
inputs.devshell.flakeModule
inputs.nci.flakeModule
inputs.pre-commit-hooks.flakeModule
inputs.treefmt-nix.flakeModule
];
systems = [
"x86_64-linux"
"aarch64-linux"
];
perSystem =
{
config,
pkgs,
system,
...
}:
{
_module.args.pkgs = import inputs.nixpkgs {
inherit system;
config.allowUnfree = true;
};
pre-commit.settings.hooks = {
treefmt.enable = true;
deadnix.enable = true;
statix.enable = true;
shellcheck.enable = true;
};
devshells.default = {
packages = with pkgs; [
hello
config.treefmt.build.wrapper
(python3.withPackages (p: with p; [ tqdm ]))
];
commands = [
{
package = pkgs.nix;
help = "nichts";
}
];
env = [
{
2024-11-11 20:05:59 +01:00
name = "LELE";
prefix = "lolo";
}
{
name = "LELE";
prefix = "lolo";
2024-11-11 17:43:58 +01:00
}
];
devshell.startup.pre-commit.text = config.pre-commit.installationScript;
};
treefmt = {
projectRootFile = "flake.nix";
programs = {
asmfmt.enable = true;
beautysh.enable = true;
ruff-format.enable = true;
clang-format.enable = true;
cmake-format.enable = true;
nixfmt.enable = true;
rustfmt.enable = true;
typstfmt.enable = true;
};
};
# Rust
2024-11-14 21:20:11 +01:00
nci.projects.nixp-meta = {
path = ./.;
2024-11-11 20:05:59 +01:00
numtideDevshell = "default";
2024-11-14 21:20:11 +01:00
};
2024-12-01 22:31:11 +01:00
nci.crates.nim = rec {
2024-11-11 20:05:59 +01:00
depsDrvConfig = {
mkDerivation = {
nativeBuildInputs = [ pkgs.pkg-config ];
buildInputs = with pkgs; [
openssl
];
};
};
drvConfig = {
mkDerivation = {
nativeBuildInputs = [ pkgs.pkg-config ];
inherit (depsDrvConfig.mkDerivation) buildInputs;
};
};
};
2024-11-11 17:43:58 +01:00
};
};
}