rrsync: fixed python3 and add braceexpand module
This commit is contained in:
parent
a91cea12b1
commit
9d7d8c11eb
1 changed files with 5 additions and 3 deletions
|
@ -1,11 +1,13 @@
|
|||
{ lib, stdenv, fetchurl, python, rsync, fetchpatch }:
|
||||
{ lib, stdenv, fetchurl, python3, rsync, fetchpatch }:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
pname = "rrsync";
|
||||
inherit (rsync) version srcs;
|
||||
|
||||
buildInputs = [ rsync python ];
|
||||
|
||||
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