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.
This commit is contained in:
toonn 2024-06-24 13:44:46 +02:00
parent b4eaf50471
commit 5ac050295d
No known key found for this signature in database
GPG Key ID: 89EECD463032D959

View File

@ -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 ];
};
}