summary refs log tree commit diff
path: root/pkgs/development/libraries/libusb1/default.nix
blob: 811909c659d2a17f1f3b3d63fc0a12edd3283729 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{ 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.linux;
    maintainers = [ stdenv.lib.maintainers.urkud ];
  };
}