mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-20 08:59:32 +03:00
rakshasa-rtorrent: create subtree
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 jesec-rtorrent commit.)
This commit is contained in:
parent
335dbeb95c
commit
3199dc10b7
9
pkgs/tools/networking/p2p/rakshasa-rtorrent/default.nix
Normal file
9
pkgs/tools/networking/p2p/rakshasa-rtorrent/default.nix
Normal file
@ -0,0 +1,9 @@
|
||||
{ lib
|
||||
, pkgs
|
||||
, callPackage
|
||||
}:
|
||||
|
||||
rec {
|
||||
libtorrent = callPackage ./libtorrent.nix { };
|
||||
rtorrent = callPackage ./rtorrent.nix { };
|
||||
}
|
@ -7164,7 +7164,13 @@ with pkgs;
|
||||
|
||||
libnids = callPackage ../tools/networking/libnids { };
|
||||
|
||||
libtorrent = callPackage ../tools/networking/p2p/libtorrent { };
|
||||
rakshasa-rtorrent = recurseIntoAttrs
|
||||
(callPackage ../tools/networking/p2p/rakshasa-rtorrent {
|
||||
callPackage = newScope pkgs.rakshasa-rtorrent;
|
||||
});
|
||||
|
||||
rtorrent = rakshasa-rtorrent.rtorrent;
|
||||
libtorrent = rakshasa-rtorrent.libtorrent;
|
||||
|
||||
jesec-rtorrent = recurseIntoAttrs
|
||||
(callPackage ../tools/networking/p2p/jesec-rtorrent {
|
||||
@ -9008,8 +9014,6 @@ with pkgs;
|
||||
|
||||
rsstail = callPackage ../applications/networking/feedreaders/rsstail { };
|
||||
|
||||
rtorrent = callPackage ../tools/networking/p2p/rtorrent { };
|
||||
|
||||
rubber = callPackage ../tools/typesetting/rubber { };
|
||||
|
||||
rubocop = rubyPackages.rubocop;
|
||||
|
Loading…
Reference in New Issue
Block a user