joypixels: Add sourceProvenance and prevent building on Hydra

This commit is contained in:
toonn 2024-04-22 13:22:43 +02:00
parent 74e591dc46
commit 3317c406d4
No known key found for this signature in database
GPG Key ID: 89EECD463032D959

View File

@ -93,6 +93,7 @@ stdenv.mkDerivation rec {
available upon request).
'';
homepage = "https://www.joypixels.com/fonts";
hydraPlatforms = []; # Just a binary file download, nothing to cache.
license =
let
free-license = joypixels-free-license;
@ -105,5 +106,8 @@ stdenv.mkDerivation rec {
free = false;
};
maintainers = with maintainers; [ toonn jtojnar ];
# Not quite accurate since it's a font, not a program, but clearly
# indicates we're not actually building it from source.
sourceProvenance = sourceTypes.binaryNativeCode;
};
}