10 lines
133 B
Nix
10 lines
133 B
Nix
|
{ lib
|
||
|
, pkgs
|
||
|
, callPackage
|
||
|
}:
|
||
|
|
||
|
rec {
|
||
|
libtorrent = callPackage ./libtorrent.nix { };
|
||
|
rtorrent = callPackage ./rtorrent.nix { };
|
||
|
}
|