Merge pull request #230741 from figsoda/conceal

conceal: mark as broken on darwin
This commit is contained in:
Weijia Wang 2023-05-08 23:15:08 +03:00 committed by GitHub
commit 13f44bf09f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,4 +1,4 @@
{ lib, rustPlatform, fetchFromGitHub, installShellFiles }: { lib, rustPlatform, fetchFromGitHub, installShellFiles, stdenv }:
rustPlatform.buildRustPackage rec { rustPlatform.buildRustPackage rec {
pname = "conceal"; pname = "conceal";
@ -34,5 +34,6 @@ rustPlatform.buildRustPackage rec {
homepage = "https://github.com/TD-Sky/conceal"; homepage = "https://github.com/TD-Sky/conceal";
license = licenses.mit; license = licenses.mit;
maintainers = with maintainers; [ jedsek ]; maintainers = with maintainers; [ jedsek ];
broken = stdenv.isDarwin;
}; };
} }