Skip to content

Commit

Permalink
Fix usbip listing functionality
Browse files Browse the repository at this point in the history
Closes #116380.
  • Loading branch information
Luflosi committed Apr 22, 2021
1 parent f3f3822 commit 9cfbb85
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion pkgs/os-specific/linux/usbip/default.nix
@@ -1,4 +1,4 @@
{ lib, stdenv, kernel, udev, autoconf, automake, libtool, kernelOlder }:
{ lib, stdenv, kernel, udev, autoconf, automake, libtool, hwdata, kernelOlder }:

stdenv.mkDerivation {
name = "usbip-${kernel.name}";
Expand All @@ -22,6 +22,8 @@ stdenv.mkDerivation {
./autogen.sh
'';

configureFlags = [ "--with-usbids-dir=${hwdata}/share/hwdata/" ];

meta = with lib; {
homepage = "https://github.com/torvalds/linux/tree/master/tools/usb/usbip";
description = "allows to pass USB device from server to client over the network";
Expand Down

0 comments on commit 9cfbb85

Please sign in to comment.