summary refs log tree commit diff
path: root/pkgs/development/libraries/libusbmuxd/default.nix
blob: debccb9087d6501b485eeec3b12e69fbea2e5bf0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{ stdenv, fetchFromGitHub, autoreconfHook, pkgconfig, libplist }:

stdenv.mkDerivation rec {
  pname = "libusbmuxd";
  version = "2019-03-23";

  src = fetchFromGitHub {
    owner = "libimobiledevice";
    repo = pname;
    rev = "873252dc8b4e469c7dc692064ac616104fca5f65";
    sha256 = "0qx3q0n1f2ajfm3vnairikayzln6iyb2y0i7sqfl8mj45ahl6wyj";
  };

  nativeBuildInputs = [ autoreconfHook pkgconfig ];
  buildInputs = [ libplist ];

  meta = with stdenv.lib; {
    description = "A client library to multiplex connections from and to iOS devices";
    homepage    = https://github.com/libimobiledevice/libusbmuxd;
    license     = licenses.lgpl21Plus;
    platforms   = platforms.linux;
    maintainers = with maintainers; [ infinisil ];
  };
}