From 290280d67803bf4a03cdcae5bfb49aa8ba218c53 Mon Sep 17 00:00:00 2001 From: figsoda Date: Mon, 8 May 2023 13:46:41 -0400 Subject: [PATCH] conceal: mark as broken on darwin --- pkgs/applications/misc/conceal/default.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pkgs/applications/misc/conceal/default.nix b/pkgs/applications/misc/conceal/default.nix index b4a6bfac6c4..3fa07126408 100644 --- a/pkgs/applications/misc/conceal/default.nix +++ b/pkgs/applications/misc/conceal/default.nix @@ -1,4 +1,4 @@ -{ lib, rustPlatform, fetchFromGitHub, installShellFiles }: +{ lib, rustPlatform, fetchFromGitHub, installShellFiles, stdenv }: rustPlatform.buildRustPackage rec { pname = "conceal"; @@ -34,5 +34,6 @@ rustPlatform.buildRustPackage rec { homepage = "https://github.com/TD-Sky/conceal"; license = licenses.mit; maintainers = with maintainers; [ jedsek ]; + broken = stdenv.isDarwin; }; }