qrtr: init at 0-unstable-2025-03-01

This commit is contained in:
matthewcroughan
2025-11-16 15:44:07 +00:00
parent d5a1a1e239
commit f95b805b42
+40
View File
@@ -0,0 +1,40 @@
{
stdenv,
lib,
fetchFromGitHub,
meson,
cmake,
pkg-config,
systemd,
ninja,
}:
stdenv.mkDerivation (finalAttrs: {
pname = "qrtr";
version = "0-unstable-2025-03-01";
src = fetchFromGitHub {
owner = "linux-msm";
repo = "qrtr";
rev = "5923eea97377f4a3ed9121b358fd919e3659db7b";
hash = "sha256-iHjF/2SQsvB/qC/UykNITH/apcYSVD+n4xA0S/rIfnM=";
};
nativeBuildInputs = [
meson
pkg-config
ninja
];
buildInputs = [ systemd ];
installFlags = [ "prefix=$(out)" ];
meta = with lib; {
maintainers = with maintainers; [ matthewcroughan ];
description = "QMI IDL compiler";
homepage = "https://github.com/linux-msm/qrtr";
license = licenses.bsd3;
platforms = platforms.aarch64;
};
})