rmtfs: init at 1.1.1

This commit is contained in:
matthewcroughan
2025-11-25 15:40:54 +00:00
parent f95b805b42
commit 5699a849a7
+36
View File
@@ -0,0 +1,36 @@
{
stdenv,
lib,
fetchFromGitHub,
udev,
qrtr,
qmic,
}:
stdenv.mkDerivation (finalAttrs: {
pname = "rmtfs";
version = "1.1.1";
src = fetchFromGitHub {
owner = "andersson";
repo = "rmtfs";
tag = "v${finalAttrs.version}";
hash = "sha256-00KOjdkwcAER261lleSl7OVDEAEbDyW9MWxDd0GI8KA=";
};
buildInputs = [
udev
qrtr
qmic
];
installFlags = [ "prefix=$(out)" ];
meta = with lib; {
maintainers = with maintainers; [ matthewcroughan ];
description = "Qualcomm Remote Filesystem Service";
homepage = "https://github.com/linux-msm/rmtfs";
license = licenses.bsd3;
platforms = platforms.aarch64;
};
})