about summary refs log tree commit diff
path: root/pkgs/applications/file-managers
diff options
context:
space:
mode:
authorAndersonTorres <torres.anderson.85@protonmail.com>2022-06-26 22:21:41 -0300
committerAndersonTorres <torres.anderson.85@protonmail.com>2022-06-26 23:58:10 -0300
commit6c8b81b0f1d593fba35ee40b30aaa9d3e9d54e38 (patch)
tree881988e4885b35ab78b5b97e09ed53f733dafdc5 /pkgs/applications/file-managers
parenta0b1b66a067d0a7709a8bf683d1fba722d991be6 (diff)
llama: move to applications/file-managers
Diffstat (limited to 'pkgs/applications/file-managers')
-rw-r--r--pkgs/applications/file-managers/llama/default.nix22
1 files changed, 22 insertions, 0 deletions
diff --git a/pkgs/applications/file-managers/llama/default.nix b/pkgs/applications/file-managers/llama/default.nix
new file mode 100644
index 0000000000000..f1822c674116c
--- /dev/null
+++ b/pkgs/applications/file-managers/llama/default.nix
@@ -0,0 +1,22 @@
+{ buildGoModule, fetchFromGitHub, lib }:
+
+buildGoModule rec {
+  pname = "llama";
+  version = "1.0.2";
+
+  src = fetchFromGitHub {
+    owner = "antonmedv";
+    repo = "llama";
+    rev = "v${version}";
+    sha256 = "sha256-6Xuwl4IpzbVfJ2MhHeImPFWxL/Y6rhnBExlh64PeGdk=";
+  };
+
+  vendorSha256 = "sha256-zbfQtTDbVWFVGQyjqlkv3mTvEPkKImzXAIXcmkh4wqk=";
+
+  meta = with lib; {
+    description = "Terminal file manager";
+    homepage = "https://github.com/antonmedv/llama";
+    license = licenses.mit;
+    maintainers = with maintainers; [ portothree ];
+  };
+}