mirror of
https://github.com/foo-dogsquared/nixos-config.git
synced 2025-01-31 10:58:02 +00:00
21 lines
524 B
Nix
21 lines
524 B
Nix
|
{ 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";
|
||
|
};
|
||
|
}
|