Merge #199743: rrsync: change perl script to python script

...into release-22.05
This commit is contained in:
Vladimír Čunát
2022-11-06 09:45:44 +01:00

View File

@@ -1,11 +1,13 @@
{ lib, stdenv, fetchurl, perl, rsync, fetchpatch }:
{ stdenv, python3, rsync }:
stdenv.mkDerivation {
pname = "rrsync";
inherit (rsync) version src;
buildInputs = [ rsync perl ];
buildInputs = [
rsync
(python3.withPackages (pythonPackages: with pythonPackages; [ braceexpand ]))
];
# Skip configure and build phases.
# We just want something from the support directory
dontConfigure = true;