mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 06:14:57 +01:00
81 lines
1.6 KiB
Nix
81 lines
1.6 KiB
Nix
{
|
|
lib,
|
|
python3Packages,
|
|
fetchFromGitHub,
|
|
appstream,
|
|
meson,
|
|
ninja,
|
|
pkg-config,
|
|
gobject-introspection,
|
|
wrapGAppsHook4,
|
|
desktop-file-utils,
|
|
libadwaita,
|
|
gtksourceview5,
|
|
xdg-utils,
|
|
ollama,
|
|
}:
|
|
|
|
python3Packages.buildPythonApplication rec {
|
|
pname = "alpaca";
|
|
version = "2.0.3";
|
|
pyproject = false; # Built with meson
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "Jeffser";
|
|
repo = "Alpaca";
|
|
rev = version;
|
|
hash = "sha256-CXrnPhNu/doz145rvonuBXoJQolz7qgMdn5KgVio6J4=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
appstream
|
|
meson
|
|
ninja
|
|
pkg-config
|
|
gobject-introspection
|
|
wrapGAppsHook4
|
|
desktop-file-utils
|
|
];
|
|
|
|
buildInputs = [
|
|
libadwaita
|
|
gtksourceview5
|
|
];
|
|
|
|
dependencies = with python3Packages; [
|
|
pygobject3
|
|
requests
|
|
pillow
|
|
pypdf
|
|
pytube
|
|
html2text
|
|
];
|
|
|
|
dontWrapGApps = true;
|
|
|
|
makeWrapperArgs = [
|
|
"\${gappsWrapperArgs[@]}"
|
|
"--prefix PATH : ${lib.makeBinPath [ xdg-utils ollama ]}"
|
|
# Declared but not used in src/window.py, for later reference
|
|
# https://github.com/flatpak/flatpak/issues/3229
|
|
"--set FLATPAK_DEST ${placeholder "out"}"
|
|
];
|
|
|
|
meta = {
|
|
description = "Ollama client made with GTK4 and Adwaita";
|
|
longDescription = ''
|
|
To run Alpaca with GPU acceleration enabled, simply override it:
|
|
```nix
|
|
pkgs.alpaca.override {
|
|
ollama = pkgs.ollama-cuda;
|
|
}
|
|
```
|
|
Or using `pkgs.ollama-rocm` for AMD GPUs.
|
|
'';
|
|
homepage = "https://jeffser.com/alpaca";
|
|
license = lib.licenses.gpl3Plus;
|
|
mainProgram = "alpaca";
|
|
maintainers = with lib.maintainers; [ aleksana ];
|
|
platforms = lib.platforms.linux;
|
|
};
|
|
}
|