From 7320cd6f0f2f453553ba8b98471bd2e4a745d325 Mon Sep 17 00:00:00 2001 From: figsoda Date: Sun, 14 May 2023 16:49:43 -0400 Subject: [PATCH] trashy: limit platforms to linux --- pkgs/tools/misc/trashy/default.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkgs/tools/misc/trashy/default.nix b/pkgs/tools/misc/trashy/default.nix index edaf1893f326..cc985b8f3b35 100644 --- a/pkgs/tools/misc/trashy/default.nix +++ b/pkgs/tools/misc/trashy/default.nix @@ -27,5 +27,7 @@ rustPlatform.buildRustPackage rec { license = with licenses; [ asl20 /* or */ mit ]; maintainers = with maintainers; [ oberblastmeister ]; mainProgram = "trash"; + # darwin is unsupported due to https://github.com/Byron/trash-rs/issues/8 + platforms = platforms.linux; }; }