about summary refs log tree commit diff
path: root/pkgs/by-name/md
diff options
context:
space:
mode:
authoraleksana2024-09-03 20:22:14 +0800
committeraleksana2024-09-03 20:22:24 +0800
commitf2e14433d7f07ef9b6e027f5339490bcca6d565d (patch)
tree23468ac71d9f08b6b5a58b6f2c125f39f5494e4d /pkgs/by-name/md
parentc7ff6d7c2f9258e1a5854aa749e759555b63adfb (diff)
mdt: remove (duplicate of md-tui)
Diffstat (limited to 'pkgs/by-name/md')
-rw-r--r--pkgs/by-name/md/mdt/package.nix32
1 files changed, 0 insertions, 32 deletions
diff --git a/pkgs/by-name/md/mdt/package.nix b/pkgs/by-name/md/mdt/package.nix
deleted file mode 100644
index e52abfe6542e..000000000000
--- a/pkgs/by-name/md/mdt/package.nix
+++ /dev/null
@@ -1,32 +0,0 @@
-{ lib
-, fetchFromGitHub
-, rustPlatform
-, darwin
-, stdenv
-}:
-
-rustPlatform.buildRustPackage rec {
-  pname = "mdt";
-  version = "0.8.6";
-
-  src = fetchFromGitHub {
-    owner = "henriklovhaug";
-    repo = "md-tui";
-    rev = "v${version}";
-    hash = "sha256-3lNipCYhzqeAAUQZ2ajcOakNDlwSwbUUvP8Dtu6gBsI=";
-  };
-
-  cargoHash = "sha256-wY/FV0evsz+SZYTL63gReqsy/jfPE39eISs5N7vc3ZU=";
-
-  buildInputs = lib.optionals stdenv.isDarwin [ darwin.apple_sdk.frameworks.CoreServices ];
-
-  meta = {
-    description = "Markdown renderer in the terminal";
-    homepage = "https://github.com/henriklovhaug/md-tui";
-    changelog = "https://github.com/henriklovhaug/md-tui/releases/tag/v${version}";
-    license = lib.licenses.agpl3Only;
-    mainProgram = "mdt";
-    maintainers = with lib.maintainers; [ anas ];
-    platforms = with lib.platforms; unix ++ windows;
-  };
-}