From 6eb71c7e623ebdfdf66cf22269e68d3ce5034c36 Mon Sep 17 00:00:00 2001 From: Theodore Ni <3806110+tjni@users.noreply.github.com> Date: Mon, 5 Jun 2023 11:11:04 -0700 Subject: [PATCH] libusbmuxd: 2.0.2+date=2022-05-04 -> 2.0.2+date=2023-04-30 --- pkgs/development/libraries/libusbmuxd/default.nix | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/pkgs/development/libraries/libusbmuxd/default.nix b/pkgs/development/libraries/libusbmuxd/default.nix index 28cbd8d8561..5fa18444d0f 100644 --- a/pkgs/development/libraries/libusbmuxd/default.nix +++ b/pkgs/development/libraries/libusbmuxd/default.nix @@ -9,19 +9,15 @@ stdenv.mkDerivation rec { pname = "libusbmuxd"; - version = "2.0.2+date=2022-05-04"; + version = "2.0.2+date=2023-04-30"; src = fetchFromGitHub { owner = "libimobiledevice"; repo = pname; - rev = "36ffb7ab6e2a7e33bd1b56398a88895b7b8c615a"; - hash = "sha256-41N5cSLAiPJ9FjdnCQnMvPu9/qhI3Je/M1VmKY+yII4="; + rev = "f47c36f5bd2a653a3bd7fb1cf1d2c50b0e6193fb"; + hash = "sha256-ojFnFD0lcdJLP27oFukwzkG5THx1QE+tRBsaMj4ZCc4="; }; - postPatch = '' - echo '${version}' > .tarball-version - ''; - nativeBuildInputs = [ autoreconfHook pkg-config @@ -32,6 +28,10 @@ stdenv.mkDerivation rec { libimobiledevice-glue ]; + preAutoreconf = '' + export RELEASE_VERSION=${version} + ''; + meta = with lib; { description = "A client library to multiplex connections from and to iOS devices"; homepage = "https://github.com/libimobiledevice/libusbmuxd";