mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-19 03:14:03 +00:00
lexido: init at 1.4.2 (#313454)
This commit is contained in:
parent
a7d3990462
commit
1779bbbf2f
32
pkgs/by-name/le/lexido/package.nix
Normal file
32
pkgs/by-name/le/lexido/package.nix
Normal file
@ -0,0 +1,32 @@
|
||||
{
|
||||
lib,
|
||||
buildGoModule,
|
||||
fetchFromGitHub,
|
||||
}:
|
||||
|
||||
buildGoModule rec {
|
||||
pname = "lexido";
|
||||
version = "1.4.2";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "micr0-dev";
|
||||
repo = "lexido";
|
||||
rev = "v${version}";
|
||||
hash = "sha256-nc6UvW16MmLsKt0oSb9nG64N7J3+5CveSwPnGOezhGY=";
|
||||
};
|
||||
|
||||
vendorHash = "sha256-h3ws9k7W4nNyS1WvZP29NJfJsBOe0D47ykd41C96Xi4=";
|
||||
|
||||
ldflags = [
|
||||
"-s"
|
||||
"-w"
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
description = "A terminal assistant, powered by Generative AI";
|
||||
homepage = "https://github.com/micr0-dev/lexido";
|
||||
license = licenses.agpl3Only;
|
||||
maintainers = with maintainers; [ daru-san ];
|
||||
mainProgram = "lexido";
|
||||
};
|
||||
}
|
Loading…
Reference in New Issue
Block a user