nixpkgs/pkgs/applications/file-managers/llama/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

23 lines
548 B
Nix
Raw Normal View History

2022-01-12 03:50:14 +00:00
{ buildGoModule, fetchFromGitHub, lib }:
buildGoModule rec {
pname = "llama";
2023-01-08 10:39:33 +00:00
version = "1.4.0";
2022-01-12 03:50:14 +00:00
src = fetchFromGitHub {
owner = "antonmedv";
repo = "llama";
rev = "v${version}";
2023-01-08 10:39:33 +00:00
sha256 = "sha256-mJUxi2gqTMcodznCUDb2iB6j/p7bMUhhBLtZMbvfE1c=";
2022-01-12 03:50:14 +00:00
};
2023-01-08 10:39:33 +00:00
vendorHash = "sha256-nngto104p/qJpWM1NlmEqcrJThXSeCfcoXCzV1CClYQ=";
2022-01-12 03:50:14 +00:00
meta = with lib; {
description = "Terminal file manager";
homepage = "https://github.com/antonmedv/llama";
license = licenses.mit;
maintainers = with maintainers; [ portothree ];
};
}