From 6b0fdbceb60152d11ecef95258f4e6ba70977f0f Mon Sep 17 00:00:00 2001 From: matthewcroughan Date: Mon, 17 Nov 2025 11:29:24 +0000 Subject: [PATCH] hexagonrpc: init at 0.4.0 --- pkgs/by-name/he/hexagonrpc/package.nix | 33 ++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 pkgs/by-name/he/hexagonrpc/package.nix diff --git a/pkgs/by-name/he/hexagonrpc/package.nix b/pkgs/by-name/he/hexagonrpc/package.nix new file mode 100644 index 000000000000..ec90538b4205 --- /dev/null +++ b/pkgs/by-name/he/hexagonrpc/package.nix @@ -0,0 +1,33 @@ +{ + lib, + stdenv, + fetchFromGitHub, + meson, + ninja, +}: + +stdenv.mkDerivation (finalAttrs: { + pname = "hexagonrpc"; + version = "0.4.0"; + + src = fetchFromGitHub { + owner = "linux-msm"; + repo = "hexagonrpc"; + tag = "v${finalAttrs.version}"; + hash = "sha256-OC6wXBCIW4XznWG0zzxRK3BzWMVK2Jq/gTL36sJV1PE="; + }; + + nativeBuildInputs = [ + meson + ninja + ]; + + meta = { + description = "Daemon to communicate with Qualcomm DSPs"; + homepage = "https://github.com/linux-msm/hexagonrpc"; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ matthewcroughan ]; + mainProgram = "hexagonrpc"; + platforms = lib.platforms.all; + }; +})