Merge pull request #125470 from fortuneteller2k/libimobiledevice

libimobiledevice: 1.3.0 ->  unstable-2021-06-02
This commit is contained in:
Sandro 2021-06-05 16:58:44 +02:00 committed by GitHub
commit 09875b8eba
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,25 +1,36 @@
{ lib, stdenv, fetchFromGitHub, automake, autoconf, libtool, pkg-config, gnutls { lib
, libgcrypt, libtasn1, glib, libplist, libusbmuxd }: , stdenv
, fetchFromGitHub
, autoreconfHook
, libtool
, pkg-config
, gnutls
, libgcrypt
, libtasn1
, glib
, libplist
, libusbmuxd
}:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
pname = "libimobiledevice"; pname = "libimobiledevice";
version = "1.3.0"; version = "unstable-2021-06-02";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = pname; owner = pname;
repo = pname; repo = pname;
rev = version; rev = "ca324155f8b33babf907704828c7903608db0aa2";
sha256 = "1jkq3hpg4n5a6s1k618ib0s80pwf00nlfcby7xckysq8mnd2pp39"; sha256 = "sha256-Q7THwld1+elMJQ14kRnlIJDohFt7MW7JeyIUGC0k52I=";
}; };
outputs = [ "out" "dev" ]; outputs = [ "out" "dev" ];
nativeBuildInputs = [ nativeBuildInputs = [
autoconf autoreconfHook
automake
libtool libtool
pkg-config pkg-config
]; ];
propagatedBuildInputs = [ propagatedBuildInputs = [
glib glib
gnutls gnutls
@ -29,12 +40,7 @@ stdenv.mkDerivation rec {
libusbmuxd libusbmuxd
]; ];
preConfigure = "NOCONFIGURE=1 ./autogen.sh"; configureFlags = [ "--disable-openssl" "--without-cython" ];
configureFlags = [
"--disable-openssl"
"--without-cython"
];
meta = with lib; { meta = with lib; {
homepage = "https://github.com/libimobiledevice/libimobiledevice"; homepage = "https://github.com/libimobiledevice/libimobiledevice";