android-file-transfer: 4.5 -> 4.5-unstable-2026-04-17

Switch to unreleased version for recent fixes, especially to fix the build on Darwin
This commit is contained in:
Zhong Jianxin
2026-05-12 20:45:09 +08:00
parent 593735769d
commit 0fe7871c8a

View File

@@ -11,13 +11,17 @@
stdenv.mkDerivation (finalAttrs: {
pname = "android-file-transfer";
version = "4.5";
version = "4.5-unstable-2026-04-17";
src = fetchFromGitHub {
owner = "whoozle";
repo = "android-file-transfer-linux";
tag = "v${finalAttrs.version}";
sha256 = "sha256-G+ErwZ/F8Cl8WLSzC+5LrEWWqNZL3xDMBvx/gjkgAXk=";
# tag = "v${finalAttrs.version}";
# Switch to unreleased version for recent fixes, especially to fix the build on Darwin
# https://github.com/whoozle/android-file-transfer-linux/pull/360
# TODO: Switch back when the next version releases
rev = "88926930db41238c7b4d7237fc5849b9586cc7b8";
sha256 = "sha256-rk1QXq8JiLRZu+dz9HvWkOj5JyaLMXzTybByl46obE8=";
};
patches = [ ./darwin-dont-vendor-dependencies.patch ];