X-Git-Url: http://git.scottworley.com/auto-upgrade-with-pinch/blobdiff_plain/2be80b46d63fcc3250f9122ab987da584090e97d..4acf153c79292b2e2e7c8f2cafdbdd0d076b97a3:/overlays/pinch.nix?ds=sidebyside diff --git a/overlays/pinch.nix b/overlays/pinch.nix index d85be2d..3399609 100644 --- a/overlays/pinch.nix +++ b/overlays/pinch.nix @@ -1,9 +1,14 @@ self: super: { - pinch = super.writeShellScriptBin "pinch" '' - exec ${self.python3}/bin/python3 ${super.fetchgit { - url = "https://scottworley.com/pinch.git"; - rev = "1.0"; - sha256 = "0dlyx1vadppalpc1kr777k8ij3x04lz2m938y205xi7k5ab6j6fr"; - }}/pinch.py "$@" - ''; + pinch = if builtins.hasAttr "pinch" super then + super.pinch + else + super.writeShellScriptBin "pinch" '' + exec ${self.python3}/bin/python3 ${ + super.fetchgit { + url = "https://scottworley.com/pinch.git"; + rev = "1.1"; + sha256 = "0ilbhvr0d83kfwkm7ak64gik44gi2axfnp9rzsa7g5cwz9qaxdbv"; + } + }/pinch.py "$@" + ''; }