patchy-bin 1.2.7

A tool which makes it easy to declaratively manage personal forks by automatically merging pull requests
Documentation
1
2
3
4
5
6
7
8
9
10
11
{
  pkgs ? import <nixpkgs> { },
}:
pkgs.mkShell {
  # Get dependencies from the main package
  inputsFrom = [ (pkgs.callPackage ./default.nix { }) ];
  # Additional tooling
  buildInputs = with pkgs; [
    git
  ];
}