about summary refs log tree commit diff
path: root/pkgs/servers/nosql
diff options
context:
space:
mode:
authorMatthew Bauer <mjbauer95@gmail.com>2018-03-25 23:01:31 -0500
committerMatthew Bauer <mjbauer95@gmail.com>2018-03-26 17:40:55 -0500
commitce8ce600ae41d3899e4a556fa9ff8a1a34374063 (patch)
tree3ea6538af9f648999a7a68cb44818c52f33963c6 /pkgs/servers/nosql
parent675dc1bfbfd87c02c8588d78ffc903fb6987f6e4 (diff)
unix-tools: introduce unix-tools.nix
unix-tools.nix has a collection of tools that are commonly installed
by default in Unix derivatives. This is intended to provide
compatibility between macOS and Linux users. Three Linux-only
derivations are provided for compatbility:

- procps
- utillinux
- nettools

More tools are also provided.

Also: treewide: use unixtools

Non-comprehensive replace of Linux-only procps and util-linux with
'unixtools'.
Diffstat (limited to 'pkgs/servers/nosql')
-rw-r--r--pkgs/servers/nosql/cassandra/generic.nix3
1 files changed, 2 insertions, 1 deletions
diff --git a/pkgs/servers/nosql/cassandra/generic.nix b/pkgs/servers/nosql/cassandra/generic.nix
index 50b56213b3087..48875b093a8dd 100644
--- a/pkgs/servers/nosql/cassandra/generic.nix
+++ b/pkgs/servers/nosql/cassandra/generic.nix
@@ -10,7 +10,8 @@ let
     gawk
     which
     jre
-  ] ++ stdenv.lib.optional stdenv.isLinux procps);
+    procps
+  ]);
 in
 
 stdenv.mkDerivation rec {