Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
68 lines
1.4 KiB
Nix
68 lines
1.4 KiB
Nix
{
|
|
stdenv,
|
|
lib,
|
|
fetchFromGitHub,
|
|
cmake,
|
|
pkg-config,
|
|
qttools,
|
|
ninja,
|
|
cups,
|
|
curl,
|
|
libGL,
|
|
qtbase,
|
|
qt5compat,
|
|
qtcreator,
|
|
vulkan-headers,
|
|
}:
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "qodeassist-plugin";
|
|
version = "0.6.2";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "Palm1r";
|
|
repo = "QodeAssist";
|
|
tag = "v${finalAttrs.version}";
|
|
hash = "sha256-M+h4TXgsRBHxta0prFxvxjyrD0MXLWJxpWI5tA4+ZY8=";
|
|
};
|
|
|
|
dontWrapQtApps = true;
|
|
|
|
nativeBuildInputs = [
|
|
cmake
|
|
pkg-config
|
|
ninja
|
|
(qttools.override { withClang = true; })
|
|
];
|
|
|
|
buildInputs = [
|
|
cups
|
|
curl
|
|
libGL
|
|
qtbase
|
|
qt5compat
|
|
qtcreator
|
|
vulkan-headers
|
|
];
|
|
|
|
outputs = [ "out" ];
|
|
|
|
cmakeFlags = [ ];
|
|
|
|
installPhase = "mkdir -p $out; cp -R lib $out/";
|
|
|
|
meta = {
|
|
description = "AI-powered coding assistant plugin for Qt Creator";
|
|
longDescription = ''
|
|
QodeAssist is an AI-powered coding assistant plugin for Qt Creator.
|
|
It provides intelligent code completion and suggestions for C++ and QML,
|
|
leveraging large language models through local providers like Ollama.
|
|
Enhance your coding productivity with context-aware AI assistance directly
|
|
in your Qt development environment.
|
|
'';
|
|
homepage = "https://github.com/Palm1r/QodeAssist";
|
|
license = lib.licenses.gpl3Only;
|
|
maintainers = [ lib.maintainers.zatm8 ];
|
|
platforms = lib.platforms.linux;
|
|
};
|
|
})
|