nixpkgs/pkgs/development/libraries/libusbmuxd/default.nix

27 lines
768 B
Nix
Raw Normal View History

2018-08-13 06:46:35 +02:00
{ stdenv, fetchFromGitHub, autoreconfHook, pkgconfig, libplist }:
2015-04-30 00:45:57 +02:00
stdenv.mkDerivation rec {
2018-08-13 06:46:35 +02:00
pname = "libusbmuxd";
version = "2018-07-23";
name = "${pname}-${version}";
2015-04-30 00:45:57 +02:00
2018-08-13 06:46:35 +02:00
src = fetchFromGitHub {
owner = "libimobiledevice";
repo = pname;
rev = "78df9be5fc8222ed53846cb553de9b5d24c85c6c";
sha256 = "05hbn0mbmv5ln9hfsvnf7i1mnp6ncbyfnl5w331kg4fi12wjshc5";
};
2018-08-13 06:46:35 +02:00
nativeBuildInputs = [ autoreconfHook pkgconfig ];
2015-04-30 00:45:57 +02:00
buildInputs = [ libplist ];
2018-08-13 06:46:35 +02: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;
maintainers = with maintainers; [ ];
2015-04-30 00:45:57 +02:00
};
}