Merge pull request #287481 from onemoresuza/hare

hare: remove `passthru.updateScript` from it and harec
This commit is contained in:
Sandro 2024-02-10 17:52:12 +01:00 committed by GitHub
commit 7dac69a0d9
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 0 additions and 4 deletions

View File

@ -8,7 +8,6 @@
, scdoc , scdoc
, tzdata , tzdata
, substituteAll , substituteAll
, unstableGitUpdater
, callPackage , callPackage
, enableCrossCompilation ? (stdenv.hostPlatform.isLinux && stdenv.hostPlatform.is64bit) , enableCrossCompilation ? (stdenv.hostPlatform.isLinux && stdenv.hostPlatform.is64bit)
, pkgsCross , pkgsCross
@ -133,7 +132,6 @@ stdenv.mkDerivation (finalAttrs: {
setupHook = ./setup-hook.sh; setupHook = ./setup-hook.sh;
passthru = { passthru = {
updateScript = unstableGitUpdater { };
tests = lib.optionalAttrs enableCrossCompilation { tests = lib.optionalAttrs enableCrossCompilation {
crossCompilation = callPackage ./cross-compilation-tests.nix { crossCompilation = callPackage ./cross-compilation-tests.nix {
hare = finalAttrs.finalPackage; hare = finalAttrs.finalPackage;

View File

@ -3,7 +3,6 @@
, fetchFromSourcehut , fetchFromSourcehut
, qbe , qbe
, fetchgit , fetchgit
, unstableGitUpdater
}: }:
let let
# harec needs the dbgfile and dbgloc features implemented up to this commit. # 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 # We create this attribute so that the `hare` package can access the
# overwritten `qbe`. # overwritten `qbe`.
qbeUnstable = qbe'; qbeUnstable = qbe';
updateScript = unstableGitUpdater { };
}; };
meta = { meta = {