mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 15:22:59 +01:00
libusb: point alias to libusb1
Until recently, libusb-compat propagated libusb1 and many packages unknowingly used it to obtain libusb1. When https://github.com/NixOS/nixpkgs/pull/82944 removed this evil propagation, it broke many packages with such incorrect assumption. This patch trades the breakage of packages wanting libusb1 caused by the PR for a hopefully less common breakage of the packages relying on the compat library.
This commit is contained in:
parent
e89e2edc73
commit
45edbeb81d
1 changed files with 1 additions and 1 deletions
|
@ -249,7 +249,7 @@ mapAliases ({
|
|||
libtxc_dxtn = throw "removed 2020-03-16, now integrated in Mesa";
|
||||
libtxc_dxtn_s2tc = throw "removed 2020-03-16, now integrated in Mesa";
|
||||
libudev = udev; # added 2018-04-25
|
||||
libusb = libusb-compat-0_1; # added 2020-04-28
|
||||
libusb = libusb1; # added 2020-04-28
|
||||
libsexy = throw "libsexy has been removed from nixpkgs, as it's abandoned and no package needed it."; # 2019-12-10
|
||||
libqmatrixclient = throw "libqmatrixclient was renamed to libquotient"; # added 2020-04-09
|
||||
links = links2; # added 2016-01-31
|
||||
|
|
Loading…
Reference in a new issue