libusb1: optionally enable static library
This commit is contained in:
parent
e1d89821a0
commit
051320062e
|
@ -1,6 +1,6 @@
|
||||||
{ stdenv, fetchurl, pkgconfig, systemd ? null, libobjc, IOKit }:
|
{ stdenv, fetchurl, pkgconfig, systemd ? null, libobjc, IOKit, withStatic ? false }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation (rec {
|
||||||
name = "libusb-1.0.22";
|
name = "libusb-1.0.22";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
|
@ -32,4 +32,8 @@ stdenv.mkDerivation rec {
|
||||||
license = licenses.lgpl21Plus;
|
license = licenses.lgpl21Plus;
|
||||||
maintainers = [ ];
|
maintainers = [ ];
|
||||||
};
|
};
|
||||||
}
|
} // stdenv.lib.optionalAttrs withStatic {
|
||||||
|
# Carefully added here to avoid a mass rebuild.
|
||||||
|
# Inline this the next time this package changes.
|
||||||
|
dontDisableStatic = withStatic;
|
||||||
|
})
|
||||||
|
|
Loading…
Reference in New Issue