mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 23:22:37 +00:00
f6dfa221c9
* usbip: Init at ${kernel.version} * usbip: simplify build * usbip: fix build on bcachefs kernel * usbip: revert autoreconfHook sorry for breakage, I was testing the wrong code
23 lines
545 B
Nix
23 lines
545 B
Nix
{ stdenv, kernel, udev, autoconf, automake, libtool }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "usbip-${kernel.name}";
|
|
|
|
src = kernel.src;
|
|
|
|
nativeBuildInputs = [ autoconf automake libtool ];
|
|
buildInputs = [ udev ];
|
|
|
|
preConfigure = ''
|
|
cd tools/usb/usbip
|
|
./autogen.sh
|
|
'';
|
|
|
|
meta = with stdenv.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";
|
|
license = licenses.gpl2;
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|