libtorrentRasterbar: move files to match common nixpkgs layout

No other packages have an own directory for each version with only one
file in each directory.
This commit is contained in:
Milan Pässler 2020-12-20 14:19:31 +01:00 committed by Milan
parent 4ac0d7fb6b
commit 0dcf65711c
4 changed files with 3 additions and 3 deletions

View file

@ -14676,16 +14676,16 @@ in
libtomcrypt = callPackage ../development/libraries/libtomcrypt { };
libtorrentRasterbar-2_0_x = callPackage ../development/libraries/libtorrent-rasterbar/2.0 {
libtorrentRasterbar-2_0_x = callPackage ../development/libraries/libtorrent-rasterbar {
inherit (darwin.apple_sdk.frameworks) SystemConfiguration;
python = python3;
};
libtorrentRasterbar-1_2_x = callPackage ../development/libraries/libtorrent-rasterbar/1.2 {
libtorrentRasterbar-1_2_x = callPackage ../development/libraries/libtorrent-rasterbar/1.2.nix {
inherit (darwin.apple_sdk.frameworks) SystemConfiguration;
};
libtorrentRasterbar-1_1_x = callPackage ../development/libraries/libtorrent-rasterbar/1.1 { };
libtorrentRasterbar-1_1_x = callPackage ../development/libraries/libtorrent-rasterbar/1.1.nix { };
libtorrentRasterbar = libtorrentRasterbar-2_0_x;