3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/development/libraries/libusbmuxd/default.nix

27 lines
768 B
Nix
Raw Normal View History

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-02-22 23:03:05 +00:00
version = "2019-01-18";
2018-08-13 05:46:35 +01:00
name = "${pname}-${version}";
2015-04-29 23:45:57 +01:00
2018-08-13 05:46:35 +01:00
src = fetchFromGitHub {
owner = "libimobiledevice";
repo = pname;
2019-02-22 23:03:05 +00:00
rev = "c75605d862cd1c312494f6c715246febc26b2e05";
sha256 = "0467a045k4znmaz61i7a2s7yywj67q830ja6zn7z39k5pqcl2z4p";
2018-08-13 05:46:35 +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;
maintainers = with maintainers; [ ];
2015-04-29 23:45:57 +01:00
};
}