forked from mirrors/nixpkgs
Merge pull request #181139 from ifurther/fix-rrsync
rrsync: change per script to python script
This commit is contained in:
commit
ab12fba5a9
|
@ -1,11 +1,13 @@
|
|||
{ lib, stdenv, fetchurl, perl, rsync, fetchpatch }:
|
||||
{ stdenv, python3, rsync }:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
pname = "rrsync";
|
||||
inherit (rsync) version srcs;
|
||||
|
||||
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;
|
||||
|
|
Loading…
Reference in a new issue