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:
Bjørn Forsman 2014-09-30 10:25:38 +02:00
parent ce4ae2aa1e
commit f96684c71a

View file

@ -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.