mirror of
https://github.com/9001/copyparty.git
synced 2025-08-17 09:02:15 -06:00
14 lines
253 B
Nix
14 lines
253 B
Nix
final: prev: rec {
|
|
copyparty = final.python3.pkgs.callPackage ./copyparty {
|
|
ffmpeg = final.ffmpeg-full;
|
|
};
|
|
|
|
partyfuse = prev.callPackage ./partyfuse {
|
|
inherit copyparty;
|
|
};
|
|
|
|
u2c = prev.callPackage ./u2c {
|
|
inherit copyparty;
|
|
};
|
|
}
|