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