Merge pull request #328535 from anas-contribs/qdl

qdl: unstable-2023-04-11 -> unstable-2024-06-10
This commit is contained in:
Peder Bergebakken Sundt 2024-07-24 15:55:20 +02:00 committed by GitHub
commit 7f884ad21a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -4,21 +4,23 @@
, pkg-config
, libxml2
, systemd
, libusb1
, unstableGitUpdater
}:
stdenv.mkDerivation {
pname = "qdl";
version = "unstable-2023-04-11";
version = "unstable-2024-06-10";
src = fetchFromGitHub {
owner = "linux-msm";
repo = "qdl";
rev = "3b22df2bc7de02d867334af3a7aa8606db4f8cdd";
sha256 = "sha256-2sL9HX73APTn9nQOx1Efdkz9F4bNASPMVFMx6YOqxyc=";
rev = "cbd46184d33af597664e08aff2b9181ae2f87aa6";
sha256 = "sha256-0PeOunYXY0nEEfGFGdguf5+GNN950GhPfMaD8h1ez/8=";
};
nativeBuildInputs = [ pkg-config ];
buildInputs = [ systemd libxml2 ];
buildInputs = [ systemd libxml2 libusb1 ];
installPhase = ''
runHook preInstall
@ -30,8 +32,10 @@ stdenv.mkDerivation {
homepage = "https://github.com/linux-msm/qdl";
description = "Tool for flashing images to Qualcomm devices";
license = licenses.bsd3;
maintainers = with maintainers; [ muscaln ];
maintainers = with maintainers; [ muscaln anas ];
platforms = platforms.linux;
mainProgram = "qdl";
};
passthru.updateScript = unstableGitUpdater { };
}