mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-24 07:53:19 +00:00
59 lines
1.5 KiB
Nix
59 lines
1.5 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitHub,
|
|
rustPlatform,
|
|
protobuf,
|
|
installShellFiles,
|
|
darwin,
|
|
}:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "clipcat";
|
|
version = "0.19.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "xrelkd";
|
|
repo = "clipcat";
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-94xw/E1Jp+bctVNzRZDdVaxxSMF/R87DNlRAzRT3Uvg=";
|
|
};
|
|
|
|
cargoHash = "sha256-qDcUEJSBd8c/ept/Y+GQCrp5b7xkSdX6ktdO9/c3k8o=";
|
|
|
|
buildInputs = lib.optionals stdenv.hostPlatform.isDarwin [
|
|
darwin.apple_sdk.frameworks.Cocoa
|
|
darwin.apple_sdk.frameworks.Security
|
|
darwin.apple_sdk.frameworks.SystemConfiguration
|
|
];
|
|
|
|
nativeBuildInputs = [
|
|
protobuf
|
|
installShellFiles
|
|
];
|
|
|
|
checkFlags = [
|
|
# Some test cases interact with X11, skip them
|
|
"--skip=test_x11_clipboard"
|
|
"--skip=test_x11_primary"
|
|
];
|
|
|
|
postInstall = lib.optionalString (stdenv.buildPlatform.canExecute stdenv.hostPlatform) ''
|
|
for cmd in clipcatd clipcatctl clipcat-menu clipcat-notify; do
|
|
installShellCompletion --cmd $cmd \
|
|
--bash <($out/bin/$cmd completions bash) \
|
|
--fish <($out/bin/$cmd completions fish) \
|
|
--zsh <($out/bin/$cmd completions zsh)
|
|
done
|
|
'';
|
|
|
|
meta = {
|
|
description = "Clipboard Manager written in Rust Programming Language";
|
|
homepage = "https://github.com/xrelkd/clipcat";
|
|
license = lib.licenses.gpl3Only;
|
|
platforms = lib.platforms.linux ++ lib.platforms.darwin;
|
|
maintainers = with lib.maintainers; [ xrelkd bot-wxt1221 ];
|
|
mainProgram = "clipcatd";
|
|
};
|
|
}
|