qdl: unstable-2023-04-11 -> unstable-2024-06-10

This commit is contained in:
0x61nas
2024-07-22 10:51:32 +03:00
parent 23fbf162fd
commit b6ef99f16a
+8 -4
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
@@ -34,4 +36,6 @@ stdenv.mkDerivation {
platforms = platforms.linux;
mainProgram = "qdl";
};
passthru.updateScript = unstableGitUpdater { };
}