From 64a7c978a589d0652f986d7efdf760d1bbecbc1e Mon Sep 17 00:00:00 2001 From: Gustavo Coutinho de Souza Date: Fri, 9 Feb 2024 09:46:04 -0300 Subject: [PATCH] hare: remove `passthru.updateScript` from it and harec Since it must be updated together with `harec`, the r-ryantm update workflow does not work, since it creates two different PRs. --- pkgs/by-name/ha/hare/package.nix | 2 -- pkgs/by-name/ha/harec/package.nix | 2 -- 2 files changed, 4 deletions(-) diff --git a/pkgs/by-name/ha/hare/package.nix b/pkgs/by-name/ha/hare/package.nix index a60b72ed60ea..01e4fe7a5aef 100644 --- a/pkgs/by-name/ha/hare/package.nix +++ b/pkgs/by-name/ha/hare/package.nix @@ -8,7 +8,6 @@ , scdoc , tzdata , substituteAll -, unstableGitUpdater , callPackage , enableCrossCompilation ? (stdenv.hostPlatform.isLinux && stdenv.hostPlatform.is64bit) , pkgsCross @@ -133,7 +132,6 @@ stdenv.mkDerivation (finalAttrs: { setupHook = ./setup-hook.sh; passthru = { - updateScript = unstableGitUpdater { }; tests = lib.optionalAttrs enableCrossCompilation { crossCompilation = callPackage ./cross-compilation-tests.nix { hare = finalAttrs.finalPackage; diff --git a/pkgs/by-name/ha/harec/package.nix b/pkgs/by-name/ha/harec/package.nix index a19861570c0d..cd288162bb65 100644 --- a/pkgs/by-name/ha/harec/package.nix +++ b/pkgs/by-name/ha/harec/package.nix @@ -3,7 +3,6 @@ , fetchFromSourcehut , qbe , fetchgit -, unstableGitUpdater }: let # harec needs the dbgfile and dbgloc features implemented up to this commit. @@ -59,7 +58,6 @@ stdenv.mkDerivation (finalAttrs: { # We create this attribute so that the `hare` package can access the # overwritten `qbe`. qbeUnstable = qbe'; - updateScript = unstableGitUpdater { }; }; meta = {