trashy: limit platforms to linux

This commit is contained in:
figsoda 2023-05-14 16:49:43 -04:00
parent b753135b53
commit 7320cd6f0f

View File

@ -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;
};
}