7 lines
101 B
Nix
7 lines
101 B
Nix
{ pkgs ? import <nixpkgs> {} }:
|
|
|
|
pkgs.mkShell {
|
|
packages = with pkgs; [
|
|
pre-commit
|
|
];
|
|
}
|