2021-01-21 09:00:13 -08:00
|
|
|
{ lib, stdenv, fetchFromGitHub, autoreconfHook, pkg-config, libplist }:
|
2015-04-29 15:45:57 -07:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2018-08-12 21:46:35 -07:00
|
|
|
pname = "libusbmuxd";
|
2020-12-05 10:07:51 -08:00
|
|
|
version = "2.0.2";
|
2018-08-12 21:46:35 -07:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "libimobiledevice";
|
|
|
|
repo = pname;
|
2020-12-05 10:07:51 -08:00
|
|
|
rev = version;
|
|
|
|
sha256 = "139pzsnixkck6ly1q6p0diqr0hgd0mx0pr4xx1jamm3f3656kpf9";
|
2018-08-12 21:46:35 -07:00
|
|
|
};
|
2016-07-09 16:49:22 -07:00
|
|
|
|
2021-01-18 22:50:56 -08:00
|
|
|
nativeBuildInputs = [ autoreconfHook pkg-config ];
|
2015-04-29 15:45:57 -07:00
|
|
|
buildInputs = [ libplist ];
|
|
|
|
|
2021-01-21 09:00:13 -08:00
|
|
|
meta = with lib; {
|
2018-08-12 21:46:35 -07:00
|
|
|
description = "A client library to multiplex connections from and to iOS devices";
|
2020-03-31 18:11:51 -07:00
|
|
|
homepage = "https://github.com/libimobiledevice/libusbmuxd";
|
2018-08-12 21:46:35 -07:00
|
|
|
license = licenses.lgpl21Plus;
|
2020-12-02 12:15:37 -08:00
|
|
|
platforms = platforms.linux ++ platforms.darwin;
|
2019-04-16 04:46:41 -07:00
|
|
|
maintainers = with maintainers; [ infinisil ];
|
2015-04-29 15:45:57 -07:00
|
|
|
};
|
|
|
|
}
|