lol
at 15.09-beta 23 lines 611 B view raw
1{ stdenv, fetchurl, pkgconfig, libusb }: 2 3stdenv.mkDerivation rec { 4 name = "usbredir-${version}"; 5 version = "0.7"; 6 7 src = fetchurl { 8 url = "http://spice-space.org/download/usbredir/${name}.tar.bz2"; 9 sha256 = "1ah64271r83lvh8hrpkxzv0iwpga1wkrfkx4rkljpijx5dqs0qqa"; 10 }; 11 12 buildInputs = [ pkgconfig libusb ]; 13 propagatedBuildInputs = [ libusb ]; 14 15 meta = with stdenv.lib; { 16 description = "USB traffic redirection protocol"; 17 homepage = http://spice-space.org/page/UsbRedir; 18 license = licenses.lgpl21; 19 20 maintainers = [ maintainers.offline ]; 21 platforms = platforms.linux; 22 }; 23}