From 90c0d22af4ada83ad3143e38979c035c7a8b1cf8 Mon Sep 17 00:00:00 2001 From: Adithya Nair Date: Sat, 7 Dec 2024 02:27:27 +0530 Subject: [PATCH] workaround to build sonarr NixOS/nixpkgs#360592 --- flake.nix | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/flake.nix b/flake.nix index 7e9f42c..377ce80 100644 --- a/flake.nix +++ b/flake.nix @@ -61,6 +61,12 @@ inherit system; config = { allowUnfree = true; + permittedInsecurePackages = [ + "aspnetcore-runtime-wrapped-6.0.36" + "aspnetcore-runtime-6.0.36" + "dotnet-sdk-wrapped-6.0.428" + "dotnet-sdk-6.0.428" + ]; }; overlays = [ (import ./extra-packages) ]; };