25 lines
775 B
Nix
25 lines
775 B
Nix
{ lib, stdenv, fetchFromGitHub, autoreconfHook, pkg-config, libplist }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "libusbmuxd";
|
|
version = "unstable-2021-02-06";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "libimobiledevice";
|
|
repo = pname;
|
|
rev = "3eb50a07bad4c2222e76df93b23a0161922150d1";
|
|
sha256 = "sha256-pBPBgE6s8JYKJYEV8CcumNki+6jD5r7HzQ0nZ8yQLdM=";
|
|
};
|
|
|
|
nativeBuildInputs = [ autoreconfHook pkg-config ];
|
|
buildInputs = [ libplist ];
|
|
|
|
meta = with 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 ++ platforms.darwin;
|
|
maintainers = with maintainers; [ infinisil ];
|
|
};
|
|
}
|