libimobiledevice: 1.3.0+date=2022-05-22 -> 1.3.0+date=2023-04-30

This commit is contained in:
Theodore Ni 2023-06-05 10:34:55 -07:00
parent a0e5661940
commit 15aa6d820f
No known key found for this signature in database
GPG key ID: 48B67583BDDD4474

View file

@ -15,21 +15,17 @@
stdenv.mkDerivation rec {
pname = "libimobiledevice";
version = "1.3.0+date=2022-05-22";
version = "1.3.0+date=2023-04-30";
outputs = [ "out" "dev" ];
src = fetchFromGitHub {
owner = "libimobiledevice";
repo = pname;
rev = "12394bc7be588be83c352d7441102072a89dd193";
hash = "sha256-2K4gZrFnE4hlGlthcKB4n210bTK3+6NY4TYVIoghXJM=";
rev = "860ffb707af3af94467d2ece4ad258dda957c6cd";
hash = "sha256-mIsB+EaGJlGMOpz3OLrs0nAmhOY1BwMs83saFBaejwc=";
};
postPatch = ''
echo '${version}' > .tarball-version
'';
nativeBuildInputs = [
autoreconfHook
pkg-config
@ -47,6 +43,10 @@ stdenv.mkDerivation rec {
CoreFoundation
];
preAutoreconf = ''
export RELEASE_VERSION=${version}
'';
configureFlags = [ "--with-gnutls" "--without-cython" ];
meta = with lib; {