about summary refs log tree commit diff
path: root/pkgs/tools/misc/trashy
diff options
context:
space:
mode:
authorfigsoda <figsoda@pm.me>2023-05-14 16:49:43 -0400
committerfigsoda <figsoda@pm.me>2023-05-14 16:49:43 -0400
commit7320cd6f0f2f453553ba8b98471bd2e4a745d325 (patch)
tree9a616ba9fb1ba5f737593ef20d43f7cfed57035c /pkgs/tools/misc/trashy
parentb753135b5309afcca69579eb1fae35e839e046ee (diff)
trashy: limit platforms to linux
Diffstat (limited to 'pkgs/tools/misc/trashy')
-rw-r--r--pkgs/tools/misc/trashy/default.nix2
1 files changed, 2 insertions, 0 deletions
diff --git a/pkgs/tools/misc/trashy/default.nix b/pkgs/tools/misc/trashy/default.nix
index edaf1893f3265..cc985b8f3b35e 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;
   };
 }