summary refs log tree commit diff
diff options
context:
space:
mode:
authorMilan Pässler <mil@nyantec.com>2020-12-20 14:19:31 +0100
committerMilan <me@pbb.lc>2020-12-20 20:51:28 +0100
commit0dcf65711c829fc3f9816680e26ef8b2dc06b9fc (patch)
tree692afd2a4a510c47bf5c035a90a50d0d02c42905
parent4ac0d7fb6b36865a5cb1794812957ab7df0362ed (diff)
downloadnixpkgs-0dcf65711c829fc3f9816680e26ef8b2dc06b9fc.tar
nixpkgs-0dcf65711c829fc3f9816680e26ef8b2dc06b9fc.tar.gz
nixpkgs-0dcf65711c829fc3f9816680e26ef8b2dc06b9fc.tar.bz2
nixpkgs-0dcf65711c829fc3f9816680e26ef8b2dc06b9fc.tar.lz
nixpkgs-0dcf65711c829fc3f9816680e26ef8b2dc06b9fc.tar.xz
nixpkgs-0dcf65711c829fc3f9816680e26ef8b2dc06b9fc.tar.zst
nixpkgs-0dcf65711c829fc3f9816680e26ef8b2dc06b9fc.zip
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.
-rw-r--r--pkgs/development/libraries/libtorrent-rasterbar/1.1.nix (renamed from pkgs/development/libraries/libtorrent-rasterbar/1.1/default.nix)0
-rw-r--r--pkgs/development/libraries/libtorrent-rasterbar/1.2.nix (renamed from pkgs/development/libraries/libtorrent-rasterbar/1.2/default.nix)0
-rw-r--r--pkgs/development/libraries/libtorrent-rasterbar/default.nix (renamed from pkgs/development/libraries/libtorrent-rasterbar/2.0/default.nix)0
-rw-r--r--pkgs/top-level/all-packages.nix6
4 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/development/libraries/libtorrent-rasterbar/1.1/default.nix b/pkgs/development/libraries/libtorrent-rasterbar/1.1.nix
index b2c958795f3..b2c958795f3 100644
--- a/pkgs/development/libraries/libtorrent-rasterbar/1.1/default.nix
+++ b/pkgs/development/libraries/libtorrent-rasterbar/1.1.nix
diff --git a/pkgs/development/libraries/libtorrent-rasterbar/1.2/default.nix b/pkgs/development/libraries/libtorrent-rasterbar/1.2.nix
index 9a165780b7e..9a165780b7e 100644
--- a/pkgs/development/libraries/libtorrent-rasterbar/1.2/default.nix
+++ b/pkgs/development/libraries/libtorrent-rasterbar/1.2.nix
diff --git a/pkgs/development/libraries/libtorrent-rasterbar/2.0/default.nix b/pkgs/development/libraries/libtorrent-rasterbar/default.nix
index e9c59ed97e8..e9c59ed97e8 100644
--- a/pkgs/development/libraries/libtorrent-rasterbar/2.0/default.nix
+++ b/pkgs/development/libraries/libtorrent-rasterbar/default.nix
diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix
index c71776008ac..1e4670e667c 100644
--- a/pkgs/top-level/all-packages.nix
+++ b/pkgs/top-level/all-packages.nix
@@ -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;