mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-21 13:10:33 +00:00
78178d5854
This moves libsystemd.so and libudev.so into systemd.lib, and gets rid of libudev (which just contained a copy of libudev.so and the udev headers). It thus reduces the closure size of all packages that (indirectly) depend on libsystemd, of which there are quite a few (for instance, PulseAudio and dbus). For example, it reduces the closure of Blender from 430.8 to 400.8 MiB.
31 lines
912 B
Nix
31 lines
912 B
Nix
{ stdenv, fetchurl, pkgconfig, systemd ? null, libobjc, IOKit }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "libusb-1.0.19";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/libusb/${name}.tar.bz2";
|
|
sha256 = "0h38p9rxfpg9vkrbyb120i1diq57qcln82h5fr7hvy82c20jql3c";
|
|
};
|
|
|
|
outputs = [ "out" "dev" ]; # get rid of propagating systemd closure
|
|
|
|
buildInputs = [ pkgconfig ];
|
|
propagatedBuildInputs =
|
|
stdenv.lib.optional stdenv.isLinux systemd ++
|
|
stdenv.lib.optionals stdenv.isDarwin [ libobjc IOKit ];
|
|
|
|
NIX_LDFLAGS = stdenv.lib.optionalString stdenv.isLinux "-lgcc_s";
|
|
|
|
preFixup = stdenv.lib.optionalString stdenv.isLinux ''
|
|
sed 's,-ludev,-L${systemd.lib}/lib -ludev,' -i $out/lib/libusb-1.0.la
|
|
'';
|
|
|
|
meta = {
|
|
homepage = http://www.libusb.info;
|
|
description = "User-space USB library";
|
|
platforms = stdenv.lib.platforms.unix;
|
|
maintainers = [ stdenv.lib.maintainers.urkud ];
|
|
};
|
|
}
|