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