4a7f99d55d
Part of: https://github.com/NixOS/nixpkgs/issues/108938 meta = with stdenv.lib; is a widely used pattern. We want to slowly remove the `stdenv.lib` indirection and encourage people to use `lib` directly. Thus let’s start with the meta field. This used a rewriting script to mostly automatically replace all occurances of this pattern, and add the `lib` argument to the package header if it doesn’t exist yet. The script in its current form is available at https://cs.tvl.fyi/depot@2f807d7f141068d2d60676a89213eaa5353ca6e0/-/blob/users/Profpatsch/nixpkgs-rewriter/default.nix
39 lines
1.5 KiB
Nix
39 lines
1.5 KiB
Nix
{ lib, stdenv, fetchFromGitHub, autoreconfHook, pkgconfig, libusb1, libimobiledevice }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "usbmuxd";
|
|
version = "1.1.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "libimobiledevice";
|
|
repo = pname;
|
|
rev = version;
|
|
sha256 = "0a2xgrb4b3ndam448z74wh1267nmrz1wcbpx4xz86pwbdc93snab";
|
|
};
|
|
|
|
nativeBuildInputs = [ autoreconfHook pkgconfig ];
|
|
propagatedBuildInputs = [ libimobiledevice libusb1 ];
|
|
|
|
preConfigure = ''
|
|
configureFlags="$configureFlags --with-udevrulesdir=$out/lib/udev/rules.d"
|
|
configureFlags="$configureFlags --with-systemdsystemunitdir=$out/lib/systemd/system"
|
|
'';
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/libimobiledevice/usbmuxd";
|
|
description = "A socket daemon to multiplex connections from and to iOS devices";
|
|
longDescription = ''
|
|
usbmuxd stands for "USB multiplexing daemon". This daemon is in charge of
|
|
multiplexing connections over USB to an iOS device. To users, it means
|
|
you can sync your music, contacts, photos, etc. over USB. To developers, it
|
|
means you can connect to any listening localhost socket on the device. usbmuxd
|
|
is not used for tethering data transfer which uses a dedicated USB interface as
|
|
a virtual network device. Multiple connections to different TCP ports can happen
|
|
in parallel. The higher-level layers are handled by libimobiledevice.
|
|
'';
|
|
license = licenses.gpl2Plus;
|
|
platforms = platforms.linux ++ platforms.darwin;
|
|
maintainers = with maintainers; [ infinisil ];
|
|
};
|
|
}
|