lol

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

+7 -7
+7 -7
pkgs/development/libraries/libimobiledevice/default.nix
··· 15 15 16 16 stdenv.mkDerivation rec { 17 17 pname = "libimobiledevice"; 18 - version = "1.3.0+date=2022-05-22"; 18 + version = "1.3.0+date=2023-04-30"; 19 19 20 20 outputs = [ "out" "dev" ]; 21 21 22 22 src = fetchFromGitHub { 23 23 owner = "libimobiledevice"; 24 24 repo = pname; 25 - rev = "12394bc7be588be83c352d7441102072a89dd193"; 26 - hash = "sha256-2K4gZrFnE4hlGlthcKB4n210bTK3+6NY4TYVIoghXJM="; 25 + rev = "860ffb707af3af94467d2ece4ad258dda957c6cd"; 26 + hash = "sha256-mIsB+EaGJlGMOpz3OLrs0nAmhOY1BwMs83saFBaejwc="; 27 27 }; 28 - 29 - postPatch = '' 30 - echo '${version}' > .tarball-version 31 - ''; 32 28 33 29 nativeBuildInputs = [ 34 30 autoreconfHook ··· 46 42 SystemConfiguration 47 43 CoreFoundation 48 44 ]; 45 + 46 + preAutoreconf = '' 47 + export RELEASE_VERSION=${version} 48 + ''; 49 49 50 50 configureFlags = [ "--with-gnutls" "--without-cython" ]; 51 51