about summary refs log tree commit diff
path: root/pkgs/tools/text/clima/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/tools/text/clima/default.nix')
-rw-r--r--pkgs/tools/text/clima/default.nix33
1 files changed, 0 insertions, 33 deletions
diff --git a/pkgs/tools/text/clima/default.nix b/pkgs/tools/text/clima/default.nix
deleted file mode 100644
index 65483e115269..000000000000
--- a/pkgs/tools/text/clima/default.nix
+++ /dev/null
@@ -1,33 +0,0 @@
-{ lib
-, rustPlatform
-, fetchFromGitHub
-, stdenv
-, darwin
-}:
-
-rustPlatform.buildRustPackage rec {
-  pname = "clima";
-  version = "1.1.0";
-
-  src = fetchFromGitHub {
-    owner = "Canop";
-    repo = "clima";
-    rev = "v${version}";
-    hash = "sha256-CRnAxhkuCTyHR4uQofA51Dm3+YKqm3iwBkFNkbLTv1A=";
-  };
-
-  cargoHash = "sha256-jKY+Ta6lqMBUlqSViKk3W0CiO8oU+ucmleKDYRA54HQ=";
-
-  buildInputs = lib.optionals stdenv.isDarwin [
-    darwin.apple_sdk.frameworks.Security
-  ];
-
-  meta = with lib; {
-    description = "Minimal viewer for Termimad";
-    homepage = "https://github.com/Canop/clima";
-    changelog = "https://github.com/Canop/clima/releases/tag/${src.rev}";
-    license = licenses.mit;
-    maintainers = with maintainers; [ figsoda ];
-    mainProgram = "clima";
-  };
-}