From b6ef99f16a6290115a87b7ca48ee3d6c1ebd50a9 Mon Sep 17 00:00:00 2001 From: 0x61nas Date: Sat, 20 Jul 2024 00:38:06 +0300 Subject: [PATCH] qdl: unstable-2023-04-11 -> unstable-2024-06-10 --- pkgs/tools/misc/qdl/default.nix | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/pkgs/tools/misc/qdl/default.nix b/pkgs/tools/misc/qdl/default.nix index 02435272535f..0a0b7b5fd14d 100644 --- a/pkgs/tools/misc/qdl/default.nix +++ b/pkgs/tools/misc/qdl/default.nix @@ -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 @@ -34,4 +36,6 @@ stdenv.mkDerivation { platforms = platforms.linux; mainProgram = "qdl"; }; + + passthru.updateScript = unstableGitUpdater { }; }