mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-14 15:36:47 +03:00
parent
044b56eb42
commit
be74b2f61e
33
pkgs/tools/text/clima/default.nix
Normal file
33
pkgs/tools/text/clima/default.nix
Normal 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";
|
||||
};
|
||||
}
|
@ -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 { };
|
||||
|
Loading…
Reference in New Issue
Block a user