mirror of
https://github.com/foo-dogsquared/nixos-config.git
synced 2025-01-31 10:58:02 +00:00
llama: init at 1.0.2
This commit is contained in:
parent
8d7c106efe
commit
b24005894d
@ -8,6 +8,7 @@
|
|||||||
pop-launcher = pkgs.callPackage ./pop-launcher.nix { };
|
pop-launcher = pkgs.callPackage ./pop-launcher.nix { };
|
||||||
gnome-shell-extension-fly-pie =
|
gnome-shell-extension-fly-pie =
|
||||||
callPackage ./gnome-shell-extension-fly-pie.nix { };
|
callPackage ./gnome-shell-extension-fly-pie.nix { };
|
||||||
|
llama = callPackage ./llama.nix { };
|
||||||
neo = callPackage ./neo.nix { };
|
neo = callPackage ./neo.nix { };
|
||||||
pop-launcher-plugin-duckduckgo-bangs =
|
pop-launcher-plugin-duckduckgo-bangs =
|
||||||
pkgs.callPackage ./pop-launcher-plugin-duckduckgo-bangs.nix { };
|
pkgs.callPackage ./pop-launcher-plugin-duckduckgo-bangs.nix { };
|
||||||
|
21
pkgs/llama.nix
Normal file
21
pkgs/llama.nix
Normal 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;
|
||||||
|
};
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user