mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-26 04:43:09 +03: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,5 +1,6 @@
|
|||||||
{ fetchurl, stdenv, tcp_wrappers, utillinux, libcap, libtirpc, libevent, libnfsidmap
|
{ fetchurl, stdenv, tcp_wrappers, utillinux, libcap, libtirpc, libevent, libnfsidmap
|
||||||
, lvm2, e2fsprogs }:
|
, lvm2, e2fsprogs, python
|
||||||
|
}:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "nfs-utils-1.2.5";
|
name = "nfs-utils-1.2.5";
|
||||||
@ -11,7 +12,7 @@ stdenv.mkDerivation rec {
|
|||||||
|
|
||||||
buildInputs =
|
buildInputs =
|
||||||
[ tcp_wrappers utillinux libcap libtirpc libevent libnfsidmap
|
[ tcp_wrappers utillinux libcap libtirpc libevent libnfsidmap
|
||||||
lvm2 e2fsprogs
|
lvm2 e2fsprogs python
|
||||||
];
|
];
|
||||||
|
|
||||||
# FIXME: Add the dependencies needed for NFSv4 and TI-RPC.
|
# FIXME: Add the dependencies needed for NFSv4 and TI-RPC.
|
||||||
|
Loading…
Reference in New Issue
Block a user