base16-schemes: unstable-2024-06-21 -> unstable-2024-11-12
[NixPkgs.git] / pkgs / by-name / le / lexido / package.nix
blob103d44b4763d7ebc6e6d22e8a9d5f9e5e48795e1
2   lib,
3   buildGoModule,
4   fetchFromGitHub,
5 }:
7 buildGoModule rec {
8   pname = "lexido";
9   version = "1.4.3";
11   src = fetchFromGitHub {
12     owner = "micr0-dev";
13     repo = "lexido";
14     rev = "v${version}";
15     hash = "sha256-zJP14dbC/Oz15CA3PRD0RfEYOrfulL2fWYHwFxhLKO4=";
16   };
18   vendorHash = "sha256-H5qljaA77AQrUjFsVSWha5pzt4qS9XKagG4GoNRVn88=";
20   ldflags = [
21     "-s"
22     "-w"
23   ];
25   meta = with lib; {
26     description = "Terminal assistant, powered by Generative AI";
27     homepage = "https://github.com/micr0-dev/lexido";
28     license = licenses.agpl3Only;
29     maintainers = with maintainers; [ daru-san ];
30     mainProgram = "lexido";
31   };