Skip to content

Commit

Permalink
Merge pull request NixOS#69005 from disassembler/ply-rsync
Browse files Browse the repository at this point in the history
linuxPackages.ply: add rsync to native build inputs
  • Loading branch information
globin authored Sep 24, 2019
2 parents d5a5a96 + 48c0062 commit 3fd6409
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pkgs/os-specific/linux/ply/default.nix
Original file line number Diff line number Diff line change
@@ -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";

Expand All @@ -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";
Expand Down

0 comments on commit 3fd6409

Please sign in to comment.