From e794263a645416ef7c218a780f5033a8ed7b6afc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Charlotte=20=F0=9F=A6=9D=20Delenk?= Date: Tue, 12 Nov 2024 17:25:17 +0100 Subject: [PATCH] disable kodi-joyn eval on riscv --- flake.nix | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/flake.nix b/flake.nix index 35afa03a..206d80fd 100644 --- a/flake.nix +++ b/flake.nix @@ -252,11 +252,18 @@ art-lotte art-lotte-bgs-nsfw art-lotte-bgs-sfw - kodi-joyn kodi-pydes package-updater ; - }; + } + // ( + if name != "riscv64-linux" then + { + inherit (pkgs) kodi-joyn; + } + else + { } + ); }) [ "x86_64-linux"