monk 0.2.2

Monk is a simple Git hooks manager written in Rust. It allows you to manage and automate Git hooks easily using a YAML configuration file.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
{ pkgs ? import <nixpkgs> {}
}:
pkgs.mkShell {
  name="dev-environment";
  buildInputs = [
    pkgs.rustup
    pkgs.just
  ];
  shellHook = ''
    export PATH=$PATH:~/.cargo/bin
    echo "Start developing..."
  '';
}