mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-19 10:34:54 +00:00
10 lines
207 B
Nix
10 lines
207 B
Nix
{stdenv, fetchurl}:
|
|
|
|
stdenv.mkDerivation {
|
|
name = "libusb-0.1.12";
|
|
src = fetchurl {
|
|
url = http://nix.cs.uu.nl/dist/tarballs/libusb-0.1.12.tar.gz;
|
|
md5 = "caf182cbc7565dac0fd72155919672e6";
|
|
};
|
|
}
|