2018-08-13 05:46:35 +01:00
|
|
|
{ stdenv, fetchFromGitHub, autoreconfHook, pkgconfig, libplist }:
|
2015-04-29 23:45:57 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2018-08-13 05:46:35 +01:00
|
|
|
pname = "libusbmuxd";
|
2019-04-16 12:46:41 +01:00
|
|
|
version = "2019-03-23";
|
2018-08-13 05:46:35 +01:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "libimobiledevice";
|
|
|
|
repo = pname;
|
2019-04-16 12:46:41 +01:00
|
|
|
rev = "873252dc8b4e469c7dc692064ac616104fca5f65";
|
|
|
|
sha256 = "0qx3q0n1f2ajfm3vnairikayzln6iyb2y0i7sqfl8mj45ahl6wyj";
|
2018-08-13 05:46:35 +01:00
|
|
|
};
|
2016-07-10 00:49:22 +01:00
|
|
|
|
2018-08-13 05:46:35 +01:00
|
|
|
nativeBuildInputs = [ autoreconfHook pkgconfig ];
|
2015-04-29 23:45:57 +01:00
|
|
|
buildInputs = [ libplist ];
|
|
|
|
|
2018-08-13 05:46:35 +01:00
|
|
|
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;
|
2019-04-16 12:46:41 +01:00
|
|
|
maintainers = with maintainers; [ infinisil ];
|
2015-04-29 23:45:57 +01:00
|
|
|
};
|
|
|
|
}
|