01ed8ef136
GitOrigin-RevId: 20fc948445a6c22d4e8d5178e9a6bc6e1f5417c8
22 lines
550 B
Nix
22 lines
550 B
Nix
{ buildGoModule, fetchFromGitHub, lib }:
|
|
|
|
buildGoModule rec {
|
|
pname = "llama";
|
|
version = "1.1.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "antonmedv";
|
|
repo = "llama";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-/YnaKodMkuHrB0xH1UNRq+a6VknKRqcbBIehaYM6Gyc=";
|
|
};
|
|
|
|
vendorSha256 = "sha256-nngto104p/qJpWM1NlmEqcrJThXSeCfcoXCzV1CClYQ=";
|
|
|
|
meta = with lib; {
|
|
description = "Terminal file manager";
|
|
homepage = "https://github.com/antonmedv/llama";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ portothree ];
|
|
};
|
|
}
|