]> git.scottworley.com Git - auto-upgrade-with-pinch/blobdiff - overlays/polite-merge.nix
Add some syncs to reduce risk on machines that can power off unexpectedly
[auto-upgrade-with-pinch] / overlays / polite-merge.nix
index e8eda590354669c15f664dfd3f28c3bd06ab078a..da4db98cf5f46ffb80d789f9686e6eb4f5509c15 100644 (file)
@@ -5,14 +5,14 @@ self: super: {
     self.callPackage ({ fetchgit, git, stdenv, }:
       stdenv.mkDerivation rec {
         pname = "polite-merge";
-        version = "2.4";
+        version = "2.4.2";
         src = fetchgit {
-          url = "https://scottworley.com/polite-merge.git";
-          rev = version;
-          sha256 = "1p6ivaay3bk4vvqqic7g23xrhkkq8z19zhsaxkav8kk90s2bmmza";
+          url = "https://git.scottworley.com/pub/git/polite-merge";
+          rev = "v${version}";
+          hash = "sha256-CUNKLCwIFwwVaA9opw9yql5AGej/ozQv8k1YR/cfV4I=";
         };
         postUnpack = "patchShebangs .";
-        checkInputs = [ git ];
+        nativeCheckInputs = [ git ];
         doCheck = true;
         preInstall = "export prefix";
       }) { };