X-Git-Url: http://git.scottworley.com/auto-upgrade-with-pinch/blobdiff_plain/2be80b46d63fcc3250f9122ab987da584090e97d..88a5ed54d78333e5dd0c0ed806906522acefd89e:/overlays/pinch.nix diff --git a/overlays/pinch.nix b/overlays/pinch.nix index d85be2d..29d2293 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.3"; + sha256 = "1l2pq0pqmjh5q8ggmz6sw6bz0nnz0jy92l5qgax8bmpm1qcszmxf"; + } + }/pinch.py "$@" + ''; }