aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobin Gloster <mail@glob.in>2019-09-24 16:34:52 +0200
committerGitHub <noreply@github.com>2019-09-24 16:34:52 +0200
commit3fd6409d4acb73ff98ca78e30e5e24ceca446f37 (patch)
tree04d35ed889f8e0a90a1562180d88bdb9a0c15d98
parentd5a5a960ffa3ae269887d6693610d29bc2763fad (diff)
parent48c0062fe92852ae0a77c1355793f81c43f3c40e (diff)
Merge pull request #69005 from disassembler/ply-rsync
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";