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