clima: init at 1.1.0

https://github.com/Canop/clima
This commit is contained in:
figsoda 2023-08-22 10:25:20 -04:00
parent 044b56eb42
commit be74b2f61e
2 changed files with 35 additions and 0 deletions

View File

@ -0,0 +1,33 @@
{ 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 = "A 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";
};
}

View File

@ -6757,6 +6757,8 @@ with pkgs;
;
citrix_workspace = citrix_workspace_23_07_0;
clima = callPackage ../tools/text/clima { };
cmigemo = callPackage ../tools/text/cmigemo { };
cmospwd = callPackage ../tools/security/cmospwd { };