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