1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00
nixpkgs/pkgs/development/libraries/libusb/default.nix

10 lines
226 B
Nix
Raw Normal View History

{stdenv, fetchurl}:
stdenv.mkDerivation {
name = "libusb-0.1.12";
src = fetchurl {
url = http://surfnet.dl.sourceforge.net/sourceforge/libusb/libusb-0.1.12.tar.gz;
md5 = "caf182cbc7565dac0fd72155919672e6";
};
}