mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 06:01:15 +00:00
add libusbmuxd-1.0.10
This commit is contained in:
parent
2a5cac91e3
commit
e3ff2793fb
16
pkgs/development/libraries/libusbmuxd/default.nix
Normal file
16
pkgs/development/libraries/libusbmuxd/default.nix
Normal file
|
@ -0,0 +1,16 @@
|
|||
{ stdenv, fetchurl, pkgconfig, libplist }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "libusbmuxd-1.0.10";
|
||||
src = fetchurl {
|
||||
url = "http://www.libimobiledevice.org/downloads/${name}.tar.bz2";
|
||||
sha256 = "1wn9zq2224786mdr12c5hxad643d29wg4z6b7jn888jx4s8i78hs";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ pkgconfig ];
|
||||
buildInputs = [ libplist ];
|
||||
|
||||
meta = {
|
||||
homepage = "http://www.libimobiledevice.org";
|
||||
};
|
||||
}
|
|
@ -6961,6 +6961,8 @@ let
|
|||
|
||||
libusb1 = callPackage ../development/libraries/libusb1 { };
|
||||
|
||||
libusbmuxd = callPackage ../development/libraries/libusbmuxd { };
|
||||
|
||||
libunwind = if stdenv.isDarwin
|
||||
then callPackage ../development/libraries/libunwind/native.nix {}
|
||||
else callPackage ../development/libraries/libunwind { };
|
||||
|
|
Loading…
Reference in a new issue