summary refs log tree commit diff
path: root/pkgs/development/libraries/libusb1
diff options
context:
space:
mode:
authorVladimír Čunát <vcunat@gmail.com>2013-11-12 09:59:58 +0100
committerVladimír Čunát <vcunat@gmail.com>2013-11-12 10:05:57 +0100
commit91028bd151a1fdd7773fd0bca48a314c36b40e26 (patch)
tree3c935c4752177d40867ea27d6a59e50374f3cf32 /pkgs/development/libraries/libusb1
parent85d21a696347dcef08b60ee87c60455a43560b66 (diff)
downloadnixpkgs-91028bd151a1fdd7773fd0bca48a314c36b40e26.tar
nixpkgs-91028bd151a1fdd7773fd0bca48a314c36b40e26.tar.gz
nixpkgs-91028bd151a1fdd7773fd0bca48a314c36b40e26.tar.bz2
nixpkgs-91028bd151a1fdd7773fd0bca48a314c36b40e26.tar.lz
nixpkgs-91028bd151a1fdd7773fd0bca48a314c36b40e26.tar.xz
nixpkgs-91028bd151a1fdd7773fd0bca48a314c36b40e26.tar.zst
nixpkgs-91028bd151a1fdd7773fd0bca48a314c36b40e26.zip
upower: fix Xfce via --enable-deprecated
Also drop older libusb1 version which is no longer needed with newer upower.
Diffstat (limited to 'pkgs/development/libraries/libusb1')
-rw-r--r--pkgs/development/libraries/libusb1/1_0_9.nix20
1 files changed, 0 insertions, 20 deletions
diff --git a/pkgs/development/libraries/libusb1/1_0_9.nix b/pkgs/development/libraries/libusb1/1_0_9.nix
deleted file mode 100644
index a2d628f9689..00000000000
--- a/pkgs/development/libraries/libusb1/1_0_9.nix
+++ /dev/null
@@ -1,20 +0,0 @@
-{ stdenv, fetchurl, pkgconfig }:
-
-stdenv.mkDerivation rec {
-  name = "libusb-1.0.9";
-
-  src = fetchurl {
-    url = "mirror://sourceforge/libusb/${name}.tar.bz2";
-    sha256 = "16sz34ix6hw2wwl3kqx6rf26fg210iryr68wc439dc065pffw879";
-  };
-
-  buildInputs = [ pkgconfig ];
-
-  meta = {
-    homepage = http://www.libusb.org;
-    description = "User-space USB library";
-    platforms = stdenv.lib.platforms.unix;
-    maintainers = [ stdenv.lib.maintainers.urkud ];
-  };
-}
-