libimobiledevice-glue: 1.2.0 -> 1.3.0

Signed-off-by: C0D3 M4513R <28912031+C0D3-M4513R@users.noreply.github.com>
This commit is contained in:
C0D3 M4513R 2024-06-19 17:05:09 +02:00
parent 9957993a93
commit 6c53c67b43
No known key found for this signature in database
GPG Key ID: 3FF32B5F41A39834

View File

@ -4,21 +4,24 @@
, autoreconfHook
, pkg-config
, libplist
, nix-update-script
}:
stdenv.mkDerivation rec {
pname = "libimobiledevice-glue";
version = "1.2.0";
outputs = [ "out" "dev" ];
version = "1.3.0";
src = fetchFromGitHub {
owner = "libimobiledevice";
repo = pname;
rev = version;
hash = "sha256-Rfs1i1Tt8uf3WfR+cDlF4L75nFHg9VypjMhHt0TgkyQ=";
hash = "sha256-+poCrn2YHeH8RQCfWDdnlmJB4Nf+unWUVwn7YwILHIs=";
};
preAutoreconf = ''
export RELEASE_VERSION=${version}
'';
nativeBuildInputs = [
autoreconfHook
pkg-config
@ -28,9 +31,9 @@ stdenv.mkDerivation rec {
libplist
];
preAutoreconf = ''
export RELEASE_VERSION=${version}
'';
outputs = [ "out" "dev" ];
passthru.updateScript = nix-update-script { };
meta = with lib; {
homepage = "https://github.com/libimobiledevice/libimobiledevice-glue";