llama: init at 1.0.2

This commit is contained in:
Gabriel Arazas 2021-12-18 15:53:00 +08:00
parent 8d7c106efe
commit b24005894d
2 changed files with 22 additions and 0 deletions

View File

@ -8,6 +8,7 @@
pop-launcher = pkgs.callPackage ./pop-launcher.nix { };
gnome-shell-extension-fly-pie =
callPackage ./gnome-shell-extension-fly-pie.nix { };
llama = callPackage ./llama.nix { };
neo = callPackage ./neo.nix { };
pop-launcher-plugin-duckduckgo-bangs =
pkgs.callPackage ./pop-launcher-plugin-duckduckgo-bangs.nix { };

21
pkgs/llama.nix Normal file
View File

@ -0,0 +1,21 @@
{ lib, buildGoModule, fetchFromGitHub }:
buildGoModule rec {
pname = "llama";
version = "1.0.2";
src = fetchFromGitHub {
owner = "antonmedv";
repo = pname;
rev = "v${version}";
sha256 = "sha256-6Xuwl4IpzbVfJ2MhHeImPFWxL/Y6rhnBExlh64PeGdk=";
};
vendorSha256 = "sha256-J/2R3XhGNmejc3jstJ0NWmJm/a1Re6UK6AuQb5gzh4E=";
meta = with lib; {
description = "Terminal file manager";
homepage = "https://github.com/antonmedv/llama";
license = licenses.mit;
};
}