about summary refs log tree commit diff
path: root/pkgs/applications
diff options
context:
space:
mode:
authorsurfaceflinger <nat@nekopon.pl>2023-08-23 15:25:09 +0200
committerAnderson Torres <torres.anderson.85@protonmail.com>2023-08-23 19:19:29 +0000
commited2096f765808a6dc559fff47274a639486936d6 (patch)
treeb0adfea3205b11f3081f31a5fdb493aa487df608 /pkgs/applications
parent2c0c1d18c4c9ae76cec81799771da54a64d976b9 (diff)
llama: remove
Diffstat (limited to 'pkgs/applications')
-rw-r--r--pkgs/applications/file-managers/llama/default.nix22
1 files changed, 0 insertions, 22 deletions
diff --git a/pkgs/applications/file-managers/llama/default.nix b/pkgs/applications/file-managers/llama/default.nix
deleted file mode 100644
index a4729c49bdb5b..0000000000000
--- a/pkgs/applications/file-managers/llama/default.nix
+++ /dev/null
@@ -1,22 +0,0 @@
-{ buildGoModule, fetchFromGitHub, lib }:
-
-buildGoModule rec {
-  pname = "llama";
-  version = "1.4.0";
-
-  src = fetchFromGitHub {
-    owner = "antonmedv";
-    repo = "llama";
-    rev = "v${version}";
-    sha256 = "sha256-mJUxi2gqTMcodznCUDb2iB6j/p7bMUhhBLtZMbvfE1c=";
-  };
-
-  vendorHash = "sha256-nngto104p/qJpWM1NlmEqcrJThXSeCfcoXCzV1CClYQ=";
-
-  meta = with lib; {
-    description = "Terminal file manager";
-    homepage = "https://github.com/antonmedv/llama";
-    license = licenses.mit;
-    maintainers = with maintainers; [ portothree ];
-  };
-}