From 3317c406d42ca3cf54bac8ba036d5e8cb742a5d8 Mon Sep 17 00:00:00 2001 From: toonn Date: Mon, 22 Apr 2024 13:22:43 +0200 Subject: [PATCH] joypixels: Add sourceProvenance and prevent building on Hydra --- pkgs/data/fonts/joypixels/default.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pkgs/data/fonts/joypixels/default.nix b/pkgs/data/fonts/joypixels/default.nix index b54aaefa10c7..f10ecd0483c7 100644 --- a/pkgs/data/fonts/joypixels/default.nix +++ b/pkgs/data/fonts/joypixels/default.nix @@ -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; }; }