From a0e56619405b585cacdc4315126a5beebf59db4c Mon Sep 17 00:00:00 2001 From: Theodore Ni <3806110+tjni@users.noreply.github.com> Date: Mon, 5 Jun 2023 09:58:37 -0700 Subject: [PATCH] libimobiledevice-glue: 0.pre+date=2022-05-22 -> 1.0.0 --- .../libraries/libimobiledevice-glue/default.nix | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/pkgs/development/libraries/libimobiledevice-glue/default.nix b/pkgs/development/libraries/libimobiledevice-glue/default.nix index 21daddb7ba3..5c602a4ee9a 100644 --- a/pkgs/development/libraries/libimobiledevice-glue/default.nix +++ b/pkgs/development/libraries/libimobiledevice-glue/default.nix @@ -8,15 +8,15 @@ stdenv.mkDerivation rec { pname = "libimobiledevice-glue"; - version = "0.pre+date=2022-05-22"; + version = "1.0.0"; outputs = [ "out" "dev" ]; src = fetchFromGitHub { owner = "libimobiledevice"; repo = pname; - rev = "d2ff7969dcd0a12e4f18f63dab03e6cd03054fcb"; - hash = "sha256-BAdpJK6/iUKCNYLaCJQo0VK63AdIafO8wGbNhnvEc/o="; + rev = version; + hash = "sha256-9TjIYz6w61JaJgOJtWteIDk9bO3NnXp/2ZJwdirFcYM="; }; nativeBuildInputs = [ @@ -28,9 +28,13 @@ stdenv.mkDerivation rec { libplist ]; + preAutoreconf = '' + export RELEASE_VERSION=${version} + ''; + meta = with lib; { homepage = "https://github.com/libimobiledevice/libimobiledevice-glue"; - description = "Library with common code used by the libraries and tools around the libimobiledevice project."; + description = "Library with common code used by the libraries and tools around the libimobiledevice project"; license = licenses.lgpl21Plus; platforms = platforms.unix; maintainers = with maintainers; [ infinisil ];