52 lines
1.3 KiB
Nix
52 lines
1.3 KiB
Nix
{ lib
|
|
, stdenv
|
|
, rustPlatform
|
|
, fetchFromGitHub
|
|
, openssl
|
|
, pkg-config
|
|
, installShellFiles
|
|
, enableCompletions ? stdenv.hostPlatform == stdenv.buildPlatform
|
|
, Security
|
|
, libiconv
|
|
}:
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "himalaya";
|
|
version = "0.2.7";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "soywod";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
sha256 = "0yp3gc5hmlrs5rcmb2qbi4iqb5ndflgqw20qa7ziqayrdd15kzpn";
|
|
};
|
|
|
|
cargoSha256 = "1abz3s9c3byqc0vaws839hjlf96ivq4zbjyijsbg004ffbmbccpn";
|
|
|
|
nativeBuildInputs = [ ]
|
|
++ lib.optionals (enableCompletions) [ installShellFiles ]
|
|
++ lib.optionals (!stdenv.hostPlatform.isDarwin) [ pkg-config ];
|
|
|
|
buildInputs =
|
|
if stdenv.hostPlatform.isDarwin then [
|
|
Security
|
|
libiconv
|
|
] else [
|
|
openssl
|
|
];
|
|
|
|
postInstall = lib.optionalString enableCompletions ''
|
|
# Install shell function
|
|
installShellCompletion --cmd himalaya \
|
|
--bash <($out/bin/himalaya completion bash) \
|
|
--fish <($out/bin/himalaya completion fish) \
|
|
--zsh <($out/bin/himalaya completion zsh)
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "CLI email client written in Rust";
|
|
homepage = "https://github.com/soywod/himalaya";
|
|
license = licenses.bsd3;
|
|
maintainers = with maintainers; [ yanganto ];
|
|
};
|
|
}
|