qmic: init at 1.0

This commit is contained in:
matthewcroughan
2025-11-25 15:40:48 +00:00
parent 5dec4550e8
commit d5a1a1e239
+27
View File
@@ -0,0 +1,27 @@
{
lib,
stdenv,
fetchFromGitHub,
}:
stdenv.mkDerivation (finalAttrs: {
pname = "qmic";
version = "1.0";
src = fetchFromGitHub {
owner = "linux-msm";
repo = "qmic";
tag = "v${finalAttrs.version}";
sha256 = "sha256-0/mIg98pN66ZaVsQ6KmZINuNfiKvdEHMsqDx0iciF8w=";
};
installFlags = [ "prefix=$(out)" ];
meta = with lib; {
maintainers = with maintainers; [ matthewcroughan ];
description = "QMI IDL compiler";
homepage = "https://github.com/andersson/qmic";
license = licenses.bsd3;
platforms = platforms.aarch64;
};
})