mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-13 09:13:17 +00:00
33 lines
649 B
Nix
33 lines
649 B
Nix
{
|
|
lib,
|
|
buildGoModule,
|
|
fetchFromGitHub,
|
|
}:
|
|
|
|
buildGoModule rec {
|
|
pname = "lexido";
|
|
version = "1.4.3";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "micr0-dev";
|
|
repo = "lexido";
|
|
rev = "v${version}";
|
|
hash = "sha256-zJP14dbC/Oz15CA3PRD0RfEYOrfulL2fWYHwFxhLKO4=";
|
|
};
|
|
|
|
vendorHash = "sha256-H5qljaA77AQrUjFsVSWha5pzt4qS9XKagG4GoNRVn88=";
|
|
|
|
ldflags = [
|
|
"-s"
|
|
"-w"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Terminal assistant, powered by Generative AI";
|
|
homepage = "https://github.com/micr0-dev/lexido";
|
|
license = licenses.agpl3Only;
|
|
maintainers = with maintainers; [ daru-san ];
|
|
mainProgram = "lexido";
|
|
};
|
|
}
|