chore: move all 3p buildRustCrate derivations to //third_party
Profpatsch and me are basically the only users of depot.users.Profpatsch.writers.rustSimple*. To pull in the odd dependency we usually use buildRustCrate which is rather convenient. However we've picked up the bad habit of inlining these in a let somewhere instead of managing them in a more central location although there has been an (unsuccesful) attempt at this in //users/Profpatsch/rust-crates.nix. This CL moves all buildRustCrate based derivations into third_party.rust-crates and deletes any duplicate derivations we have accumulated in the tree. Change-Id: I8f68b95ebd546708e9af07dca36d72dba9ca8c77 Reviewed-on: https://cl.tvl.fyi/c/depot/+/2769 Tested-by: BuildkiteCI Reviewed-by: tazjin <mail@tazj.in> Reviewed-by: Profpatsch <mail@profpatsch.de>
This commit is contained in:
parent
3e7073f106
commit
0133fdc737
7 changed files with 76 additions and 84 deletions
|
|
@ -8,7 +8,7 @@ let
|
|||
|
||||
print-ast = depot.users.Profpatsch.writers.rustSimple {
|
||||
name = "print-ast";
|
||||
dependencies = with depot.users.Profpatsch.rust-crates; [
|
||||
dependencies = with depot.third_party.rust-crates; [
|
||||
libloading
|
||||
tree-sitter
|
||||
];
|
||||
|
|
@ -61,7 +61,7 @@ let
|
|||
watch-file-modified = depot.users.Profpatsch.writers.rustSimple {
|
||||
name = "watch-file-modified";
|
||||
dependencies = [
|
||||
depot.users.Profpatsch.rust-crates.inotify
|
||||
depot.third_party.rust-crates.inotify
|
||||
depot.users.Profpatsch.netstring.rust-netstring
|
||||
];
|
||||
} ''
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue