about summary refs log tree commit diff
path: root/pkgs/amfora/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/amfora/default.nix')
-rw-r--r--pkgs/amfora/default.nix27
1 files changed, 0 insertions, 27 deletions
diff --git a/pkgs/amfora/default.nix b/pkgs/amfora/default.nix
deleted file mode 100644
index fd27430..0000000
--- a/pkgs/amfora/default.nix
+++ /dev/null
@@ -1,27 +0,0 @@
-{ stdenv, buildGoModule, fetchFromGitHub }:
-
-buildGoModule rec {
-  pname = "amfora";
-  version = "1.5.0";
-
-  src = fetchFromGitHub {
-    owner = "makeworld-the-better-one";
-    repo = pname;
-    rev = "v${version}";
-    sha256 = "1z4r1yqy5nkfa7yqcsqpqfdcghw8idryzb3s6d6ibca47r0qlcvw";
-  };
-
-  # doCheck = false;
-
-  vendorSha256 = "0xj2s14dq10fwqqxjn4d8x6zljd5d15gjbja2gb75rfv09s4fdgv";
-
-  buildFlags = [ ];
-
-  subPackages = [ "." ];
-
-  meta = with stdenv.lib; {
-    description = "A fancy terminal browser for the Gemini protocol.";
-    homepage = "https://github.com/makeworld-the-better-one/amfora";
-    license = licenses.gpl3;
-  };
-}