mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-06 13:03:34 +00:00
571c71e6f7
We are migrating packages that meet below requirements: 1. using `callPackage` 2. called path is a directory 3. overriding set is empty (`{ }`) 4. not containing path expressions other than relative path (to makenixpkgs-vet happy) 5. not referenced by nix files outside of the directory, other than`pkgs/top-level/all-packages.nix` 6. not referencing nix files outside of the directory 7. not referencing `default.nix` (since it's changed to `package.nix`) 8. `outPath` doesn't change after migration The tool is here: https://github.com/Aleksanaa/by-name-migrate.
58 lines
1.6 KiB
Nix
58 lines
1.6 KiB
Nix
{ lib
|
|
, stdenv
|
|
, fetchFromGitHub
|
|
, autoreconfHook
|
|
, pkg-config
|
|
, libimobiledevice
|
|
, libusb1
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "usbmuxd";
|
|
version = "1.1.1+date=2023-05-05";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "libimobiledevice";
|
|
repo = pname;
|
|
rev = "01c94c77f59404924f1c46d99c4e5e0c7817281b";
|
|
hash = "sha256-WqbobkzlJ9g5fb9S2QPi3qdpCLx3pxtNlT7qDI63Zp4=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
autoreconfHook
|
|
pkg-config
|
|
];
|
|
|
|
propagatedBuildInputs = [
|
|
libimobiledevice
|
|
libusb1
|
|
];
|
|
|
|
preAutoreconf = ''
|
|
export RELEASE_VERSION=${version}
|
|
'';
|
|
|
|
configureFlags = [
|
|
"--with-udevrulesdir=${placeholder "out"}/lib/udev/rules.d"
|
|
"--with-systemdsystemunitdir=${placeholder "out"}/lib/systemd/system"
|
|
];
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/libimobiledevice/usbmuxd";
|
|
description = "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.unix;
|
|
maintainers = [ ];
|
|
mainProgram = "usbmuxd";
|
|
};
|
|
}
|