awesome-cli: init at 0.7.2

This commit is contained in:
Gabriel Arazas 2022-07-09 07:06:31 +08:00
parent 908e0caf50
commit 877622db77
2 changed files with 21 additions and 0 deletions

View File

@ -0,0 +1,20 @@
{ stdenv, lib, fetchFromGitHub, buildGoModule }:
buildGoModule rec {
pname = "awesome-cli";
version = "0.7.2";
src = fetchFromGitHub {
owner = "umutphp";
repo = "awesome-cli";
rev = "v${version}";
sha256 = "sha256-gZNJVeFRGSDFHFjJ4KSSugsa6rR8YDMujg6PlRm2d7Q=";
};
vendorSha256 = "sha256-bqvcmIWy2fLpItE71LhGwuRK2+KPxNqMZalrFSCCSN0=";
meta = with lib; {
description = "Fancy terminal interface for navigating awesome lists";
homepage = "https://github.com/umutphp/awesome-cli";
};
}

View File

@ -8,6 +8,7 @@ let
in {
artem = callPackage ./artem.nix { };
auto-editor = callPackage ./auto-editor.nix { };
awesome-cli = callPackage ./awesome-cli { };
blueprint-compiler = callPackage ./blueprint-compiler.nix { };
butler = callPackage ./butler.nix { };
cursedgl = callPackage ./cursedgl { };