aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSamuel Leathers <samuel.leathers@iohk.io>2019-09-17 23:30:53 -0400
committerSamuel Leathers <samuel.leathers@iohk.io>2019-09-17 23:30:53 -0400
commit48c0062fe92852ae0a77c1355793f81c43f3c40e (patch)
treeef67d0aa497dc23cfcbeb1ae7600b46a7f8ed560
parenteb7118f9809c5051d791cbfa7ab496d93d86a186 (diff)
linuxPackages.ply: add rsync to native build inputs
-rw-r--r--pkgs/os-specific/linux/ply/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/os-specific/linux/ply/default.nix b/pkgs/os-specific/linux/ply/default.nix
index 24213cd2fb5..42739e53fda 100644
--- a/pkgs/os-specific/linux/ply/default.nix
+++ b/pkgs/os-specific/linux/ply/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, kernel, fetchFromGitHub, autoreconfHook, yacc, flex, p7zip }:
+{ stdenv, kernel, fetchFromGitHub, autoreconfHook, yacc, flex, p7zip, rsync }:
assert kernel != null -> stdenv.lib.versionAtLeast kernel.version "4.0";
@@ -7,7 +7,7 @@ let
in stdenv.mkDerivation {
pname = "ply";
inherit version;
- nativeBuildInputs = [ autoreconfHook flex yacc p7zip ];
+ nativeBuildInputs = [ autoreconfHook flex yacc p7zip rsync ];
src = fetchFromGitHub {
owner = "iovisor";