forked from mirrors/nixpkgs
07e7d46e0c
RTorrent uses a companion library, libtorrent, and they should be synchronized along the releases. They act like a small package set. Therefore it is a good idea to treat them the same way in Nixpkgs code. This commit should not change much of the things, because no code besides rtorrent uses libtorrent. (Yes, this the same message from rakshasa-rtorrent commit.)
10 lines
133 B
Nix
10 lines
133 B
Nix
{ lib
|
|
, pkgs
|
|
, callPackage
|
|
}:
|
|
|
|
rec {
|
|
libtorrent = callPackage ./libtorrent.nix { };
|
|
rtorrent = callPackage ./rtorrent.nix { };
|
|
}
|