7f71182cc1
Semi-automatic update generated by https://github.com/ryantm/nix-update tools. This update was made based on information from https://repology.org/metapackage/libusb/versions. These checks were done: - built on NixOS - Warning: no binary found that responded to help or version flags. (This warning appears even if the package isn't expected to have binaries.) - found 1.0.22 with grep in /nix/store/5wk75f6zd7ha7vhm4y3pd9p1qbc3vmgd-libusb-1.0.22 - directory tree listing: https://gist.github.com/ceccc2a897849afc2956de19e751995f
31 lines
889 B
Nix
31 lines
889 B
Nix
{ stdenv, fetchurl, pkgconfig, systemd ? null, libobjc, IOKit }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "libusb-1.0.22";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/libusb/${name}.tar.bz2";
|
|
sha256 = "0mw1a5ss4alg37m6bd4k44v35xwrcwp5qm4s686q1nsgkbavkbkm";
|
|
};
|
|
|
|
outputs = [ "out" "dev" ]; # get rid of propagating systemd closure
|
|
|
|
nativeBuildInputs = [ 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 = [ ];
|
|
};
|
|
}
|