Files
git-maintainer-tools/flake.nix
Kevin Veen-Birkenbach 9870120ea4 Initial commit
2026-04-24 19:59:30 +02:00

12 lines
370 B
Nix

{
description = "git-maintainer-tools";
inputs.nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
outputs = { self, nixpkgs }:
let system = "x86_64-linux"; pkgs = import nixpkgs { inherit system; };
in {
devShells.${system}.default = pkgs.mkShell {
packages = with pkgs; [ python312 python312Packages.pytest python312Packages.ruff ];
};
};
}