mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-20 04:31:52 +00:00
commit
35eb784bf2
|
@ -1,4 +1,5 @@
|
|||
{ stdenv, fetchFromGitHub, autoreconfHook, pkgconfig, udev, libusb }:
|
||||
{ stdenv, fetchFromGitHub, autoreconfHook, pkgconfig, udev, libusb
|
||||
, darwin }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "hidapi-0.8.0-rc1";
|
||||
|
@ -10,7 +11,10 @@ stdenv.mkDerivation rec {
|
|||
sha256 = "13d5jkmh9nh4c2kjch8k8amslnxapa9vkqzrk1z6rqmw8qgvzbkj";
|
||||
};
|
||||
|
||||
buildInputs = [ autoreconfHook pkgconfig udev libusb ];
|
||||
buildInputs = [ autoreconfHook pkgconfig ]
|
||||
++ stdenv.lib.optionals stdenv.isLinux [ udev libusb ];
|
||||
|
||||
propagatedBuildInputs = stdenv.lib.optionals stdenv.isDarwin (with darwin.apple_sdk.frameworks; [ IOKit Cocoa ]);
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
homepage = https://github.com/signal11/hidapi;
|
||||
|
|
Loading…
Reference in a new issue