CppPatterns/.nix/flake.nix

33 lines
812 B
Nix
Raw Permalink Normal View History

2024-03-14 08:32:25 +00:00
{
description = "A basic flake with a shell";
inputs.nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable";
inputs.flake-utils.url = "github:numtide/flake-utils";
outputs = { self, nixpkgs, flake-utils }:
flake-utils.lib.eachDefaultSystem (system:
let
pkgs = nixpkgs.legacyPackages.${system};
in
{
devShell = pkgs.mkShell {
nativeBuildInputs = [ pkgs.bashInteractive ];
buildInputs = with pkgs; [
# building
gcc
cmake
ninja
sccache
2024-03-14 08:38:53 +00:00
# pre-commit
pre-commit
commitizen
2024-03-14 08:32:25 +00:00
];
2024-03-14 08:38:53 +00:00
shellHook = ''
pre-commit install --allow-missing-config --hook-type pre-commit --hook-type commit-msg
'';
2024-03-14 08:32:25 +00:00
};
}
);
}