2023-11-21 04:16:05 +00:00
|
|
|
{ lib
|
2024-04-21 09:56:57 +00:00
|
|
|
, stdenv
|
2023-11-21 04:16:05 +00:00
|
|
|
, fetchFromGitHub
|
|
|
|
, rustPlatform
|
|
|
|
, protobuf
|
2023-11-25 09:34:17 +00:00
|
|
|
, installShellFiles
|
2024-04-21 09:56:57 +00:00
|
|
|
, darwin
|
2023-11-21 04:16:05 +00:00
|
|
|
}:
|
2020-10-15 19:49:26 +00:00
|
|
|
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
|
|
pname = "clipcat";
|
2024-06-26 16:00:32 +00:00
|
|
|
version = "0.18.1";
|
2020-10-15 19:49:26 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "xrelkd";
|
|
|
|
repo = pname;
|
|
|
|
rev = "v${version}";
|
2024-06-26 16:00:32 +00:00
|
|
|
hash = "sha256-rftAGrquvNPRu49rDUaPVO7EUMCvcLoV0w801BBOG8c=";
|
2023-03-25 23:16:46 +00:00
|
|
|
};
|
2020-10-15 19:49:26 +00:00
|
|
|
|
2024-06-26 16:00:32 +00:00
|
|
|
cargoHash = "sha256-Amm/NnJSnqB5q+bxRJ5A6GKOFhIGTq1OSXESF5r22bI=";
|
2024-04-21 09:56:57 +00:00
|
|
|
|
|
|
|
buildInputs = lib.optionals stdenv.isDarwin [
|
|
|
|
darwin.apple_sdk.frameworks.Cocoa
|
|
|
|
darwin.apple_sdk.frameworks.Security
|
|
|
|
darwin.apple_sdk.frameworks.SystemConfiguration
|
|
|
|
];
|
2020-10-15 19:49:26 +00:00
|
|
|
|
|
|
|
nativeBuildInputs = [
|
|
|
|
protobuf
|
2024-04-21 09:56:57 +00:00
|
|
|
|
2020-10-15 19:49:26 +00:00
|
|
|
installShellFiles
|
|
|
|
];
|
2023-11-21 04:16:05 +00:00
|
|
|
|
2023-12-15 22:04:35 +00:00
|
|
|
checkFlags = [
|
|
|
|
# Some test cases interact with X11, skip them
|
|
|
|
"--skip=test_x11_clipboard"
|
|
|
|
"--skip=test_x11_primary"
|
2023-11-25 09:34:17 +00:00
|
|
|
];
|
|
|
|
|
2024-07-10 11:52:28 +00:00
|
|
|
postInstall = lib.optionalString (stdenv.buildPlatform.canExecute stdenv.hostPlatform) ''
|
2023-11-25 09:34:17 +00:00
|
|
|
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
|
2020-10-15 19:49:26 +00:00
|
|
|
'';
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "Clipboard Manager written in Rust Programming Language";
|
2021-02-08 13:14:19 +00:00
|
|
|
homepage = "https://github.com/xrelkd/clipcat";
|
|
|
|
license = licenses.gpl3Only;
|
2024-04-21 09:56:57 +00:00
|
|
|
platforms = platforms.linux ++ platforms.darwin;
|
2020-10-15 19:49:26 +00:00
|
|
|
maintainers = with maintainers; [ xrelkd ];
|
2023-11-21 04:16:05 +00:00
|
|
|
mainProgram = "clipcatd";
|
2020-10-15 19:49:26 +00:00
|
|
|
};
|
|
|
|
}
|