mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-21 05:00:16 +00:00
Making libusb build on non-linux. It was built with -Werror, and I removed that.
There were compiler warnings in non-linux. svn path=/nixpkgs/trunk/; revision=20456
This commit is contained in:
parent
11c20b3a2c
commit
329d46cbd6
|
@ -2,6 +2,13 @@
|
|||
|
||||
stdenv.mkDerivation {
|
||||
name = "libusb-0.1.12";
|
||||
|
||||
# On non-linux, we get warnings compiling, and we don't want the
|
||||
# build to break.
|
||||
patchPhase = ''
|
||||
sed -i s/-Werror// Makefile.in
|
||||
'';
|
||||
|
||||
src = fetchurl {
|
||||
url = mirror://sourceforge/libusb/libusb-0.1.12.tar.gz;
|
||||
md5 = "caf182cbc7565dac0fd72155919672e6";
|
||||
|
|
Loading…
Reference in a new issue