My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/libraries/libusbmuxd/default.nix

24 lines
775 B

{ 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 ];
};
}