From 7639abd4d4738fe20351a523a7cf672df033137b Mon Sep 17 00:00:00 2001 From: Emily Date: Tue, 19 Nov 2024 14:20:58 +0000 Subject: [PATCH] Revert "nixStatic: mark as broken on darwin (#357185)" This is no longer necessary now that `libarchive` has been fixed. This reverts commit 0705964c881cea8896474610188905ba41b59b08. (cherry picked from commit 36a7b78f7c30b1ef522bcb4899092d57c967055e) (cherry picked from commit bb39e687143797692c31320b43f6f692d2e2bcf7) --- pkgs/tools/package-management/nix/common.nix | 2 -- 1 file changed, 2 deletions(-) diff --git a/pkgs/tools/package-management/nix/common.nix b/pkgs/tools/package-management/nix/common.nix index f3629c42d78b..a4d233b2b128 100644 --- a/pkgs/tools/package-management/nix/common.nix +++ b/pkgs/tools/package-management/nix/common.nix @@ -329,8 +329,6 @@ self = stdenv.mkDerivation { license = licenses.lgpl21Plus; inherit maintainers; platforms = platforms.unix; - # Requires refactorings in nixpkgs: https://github.com/NixOS/nixpkgs/pull/356983 - broken = stdenv.hostPlatform.isDarwin && enableStatic; outputsToInstall = [ "out" ] ++ optional enableDocumentation "man"; mainProgram = "nix"; knownVulnerabilities = lib.optional (!builtins.elem (lib.versions.majorMinor version) unaffectedByFodSandboxEscape && !atLeast221) "CVE-2024-27297";