]> git.scottworley.com Git - auto-upgrade-with-pinch/blob - overlays/pinch.nix
d85be2d49e17741bce7616f4db98062c35570773
[auto-upgrade-with-pinch] / overlays / pinch.nix
1 self: super: {
2 pinch = super.writeShellScriptBin "pinch" ''
3 exec ${self.python3}/bin/python3 ${super.fetchgit {
4 url = "https://scottworley.com/pinch.git";
5 rev = "1.0";
6 sha256 = "0dlyx1vadppalpc1kr777k8ij3x04lz2m938y205xi7k5ab6j6fr";
7 }}/pinch.py "$@"
8 '';
9 }