Skip to content

Commit

Permalink
libusb1: fix build on darwin via dropping udev (close #920)
Browse files Browse the repository at this point in the history
vcunat edit: we have udev (systemd) only on Linux systems,
extend platforms so we know about breakages from Hydra.
  • Loading branch information
lovek323 authored and vcunat committed Sep 6, 2013
1 parent bcec045 commit e1dc4d8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pkgs/development/libraries/libusb1/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,12 @@ stdenv.mkDerivation rec {
};

buildInputs = [ pkgconfig ];
propagatedBuildInputs = [ udev ];
propagatedBuildInputs = stdenv.lib.optional (stdenv.isLinux) udev;

meta = {
homepage = http://www.libusb.org;
description = "User-space USB library";
platforms = stdenv.lib.platforms.linux;
platforms = stdenv.lib.platforms.unix;
maintainers = [ stdenv.lib.maintainers.urkud ];
};
}

0 comments on commit e1dc4d8

Please sign in to comment.