Commit d5a1a1e2 authored by matthewcroughan's avatar matthewcroughan
Browse files

qmic: init at 1.0

parent 5dec4550
Loading
Loading
Loading
Loading
+27 −0
Original line number Diff line number Diff line
{
  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;
  };
})