From 5ac050295d497919b82cb6eda143d1d5534ecf0b Mon Sep 17 00:00:00 2001 From: toonn Date: Mon, 24 Jun 2024 13:44:46 +0200 Subject: [PATCH] iterm2: Indicate sourceProvenance Since the build is trivial and comes down to downloading and copying a binary this should be indicated in `meta.sourceProvenance` and `meta.hydraPlatforms` should be set to prevent Hydra from caching what amounts to a copy of the upstream archive. --- pkgs/applications/terminal-emulators/iterm2/default.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkgs/applications/terminal-emulators/iterm2/default.nix b/pkgs/applications/terminal-emulators/iterm2/default.nix index 96e387e49123..efb55c2de422 100644 --- a/pkgs/applications/terminal-emulators/iterm2/default.nix +++ b/pkgs/applications/terminal-emulators/iterm2/default.nix @@ -37,8 +37,10 @@ stdenvNoCC.mkDerivation rec { meta = with lib; { description = "Replacement for Terminal and the successor to iTerm"; homepage = "https://www.iterm2.com/"; + hydraPlatforms = []; # The build is little more than copying the binary license = licenses.gpl2; maintainers = with maintainers; [ steinybot tricktron ]; platforms = [ "x86_64-darwin" "aarch64-darwin" ]; + sourceProvenance = [ sourceTypes.binaryNativeCode ]; }; }