mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 23:03:40 +01:00
nfs-utils: add missing python dependency
nfsiostat is written in python. python is already in the closure of nfs-utils, so this adds no cost.
This commit is contained in:
parent
ce4ae2aa1e
commit
f96684c71a
1 changed files with 3 additions and 2 deletions
|
@ -1,5 +1,6 @@
|
|||
{ fetchurl, stdenv, tcp_wrappers, utillinux, libcap, libtirpc, libevent, libnfsidmap
|
||||
, lvm2, e2fsprogs }:
|
||||
, lvm2, e2fsprogs, python
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "nfs-utils-1.2.5";
|
||||
|
@ -11,7 +12,7 @@ stdenv.mkDerivation rec {
|
|||
|
||||
buildInputs =
|
||||
[ tcp_wrappers utillinux libcap libtirpc libevent libnfsidmap
|
||||
lvm2 e2fsprogs
|
||||
lvm2 e2fsprogs python
|
||||
];
|
||||
|
||||
# FIXME: Add the dependencies needed for NFSv4 and TI-RPC.
|
||||
|
|
Loading…
Reference in a new issue