make cargo-tarpaulin linux only
This commit is contained in:
parent
067dd243ee
commit
359b3d1524
|
@ -53,7 +53,6 @@ with lib; with nLib; {
|
|||
cargo-bloat # Find out what's taking up space in the executable
|
||||
cargo-udeps # Find unused dependencies
|
||||
cargo-expand # Dump expanded macros
|
||||
unstable.cargo-tarpaulin # Code coverage
|
||||
cargo-play # Quickly execute code outside of a crate
|
||||
# For building stuff that uses protocol buffers
|
||||
protobuf
|
||||
|
|
|
@ -16,6 +16,12 @@ with lib; with nLib; {
|
|||
unstable.mold
|
||||
];
|
||||
})
|
||||
# Rust development
|
||||
(mkIf devel.rust {
|
||||
home.packages = with pkgs; [
|
||||
unstable.cargo-tarpaulin # Code coverage
|
||||
];
|
||||
})
|
||||
# JVM Development
|
||||
(mkIf devel.jvm {
|
||||
home.packages = with unstable; [
|
||||
|
|
Loading…
Reference in New Issue