didyoumean: 1.1.0 -> 1.1.3

This commit is contained in:
Weijia Wang 2022-08-14 04:33:37 +02:00 committed by Rick van Schijndel
parent 2ede2cbc21
commit 3e96a3f6b9

View file

@ -2,32 +2,54 @@
, stdenv , stdenv
, rustPlatform , rustPlatform
, fetchFromGitHub , fetchFromGitHub
, installShellFiles
, pkg-config
, libxcb , libxcb
# Darwin dependencies , openssl
# Darwin dependencies
, AppKit , AppKit
}: }:
rustPlatform.buildRustPackage rec { rustPlatform.buildRustPackage rec {
pname = "didyoumean"; pname = "didyoumean";
version = "1.1.0"; version = "1.1.3";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "hisbaan"; owner = "hisbaan";
repo = "didyoumean"; repo = "didyoumean";
rev = "v${version}"; rev = "v${version}";
sha256 = "sha256-t2bmvz05vWIxQhC474q/9uky1kAQoFN8Z+qflw5Vj68="; sha256 = "sha256-hHl9PGNDFN7Dad2JOlAy99dz0pC9OmphwYMJHBBwx7Y=";
}; };
cargoSha256 = "sha256-4DbziI9enib4pm9/P4WEu15glIxtejaV2GCqbzuxxyw="; cargoSha256 = "sha256-rjkj9MO6fXVOk3fA87olGt/iIaJ8Zv/cy/Cqy/pg6yI=";
buildInputs = lib.optional stdenv.isLinux [ libxcb ] nativeBuildInputs = [
++ lib.optionals stdenv.isDarwin [ AppKit ]; installShellFiles
] ++ lib.optionals stdenv.isLinux [
pkg-config
];
buildInputs = lib.optionals stdenv.isLinux [
libxcb
openssl
] ++ lib.optionals stdenv.isDarwin [
AppKit
];
postInstall = ''
installManPage man/dym.1
installShellCompletion completions/dym.{bash,fish}
installShellCompletion --zsh completions/_dym
'';
# Clipboard doesn't exist in test environment
doCheck = false;
meta = with lib; { meta = with lib; {
description = "A CLI spelling corrector for when you're unsure"; description = "A CLI spelling corrector for when you're unsure";
homepage = "https://github.com/hisbaan/didyoumean"; homepage = "https://github.com/hisbaan/didyoumean";
license = licenses.gpl3Plus; license = licenses.gpl3Plus;
maintainers = with maintainers; [ evanjs ]; maintainers = with maintainers; [ evanjs wegank ];
mainProgram = "dym"; mainProgram = "dym";
}; };
} }