lol
fork

Configure Feed

Select the types of activity you want to include in your feed.

at 22.05-pre 24 lines 775 B view raw
1{ lib, stdenv, fetchFromGitHub, autoreconfHook, pkg-config, libplist }: 2 3stdenv.mkDerivation rec { 4 pname = "libusbmuxd"; 5 version = "unstable-2021-02-06"; 6 7 src = fetchFromGitHub { 8 owner = "libimobiledevice"; 9 repo = pname; 10 rev = "3eb50a07bad4c2222e76df93b23a0161922150d1"; 11 sha256 = "sha256-pBPBgE6s8JYKJYEV8CcumNki+6jD5r7HzQ0nZ8yQLdM="; 12 }; 13 14 nativeBuildInputs = [ autoreconfHook pkg-config ]; 15 buildInputs = [ libplist ]; 16 17 meta = with lib; { 18 description = "A client library to multiplex connections from and to iOS devices"; 19 homepage = "https://github.com/libimobiledevice/libusbmuxd"; 20 license = licenses.lgpl21Plus; 21 platforms = platforms.linux ++ platforms.darwin; 22 maintainers = with maintainers; [ infinisil ]; 23 }; 24}