From 18f1b43b34d7614786c17cb3a7fc886df185c2ef Mon Sep 17 00:00:00 2001 From: xrelkd <46590321+xrelkd@users.noreply.github.com> Date: Sat, 20 Jan 2024 17:26:34 +0800 Subject: clipcat: migrate to by-name (cherry picked from commit b4ccacc6cc0fb6ec5a29575d0f82e68fe7a2e1d6) --- pkgs/applications/misc/clipcat/default.nix | 49 ------------------------------ 1 file changed, 49 deletions(-) delete mode 100644 pkgs/applications/misc/clipcat/default.nix (limited to 'pkgs/applications/misc') diff --git a/pkgs/applications/misc/clipcat/default.nix b/pkgs/applications/misc/clipcat/default.nix deleted file mode 100644 index 8de62f1a2296a..0000000000000 --- a/pkgs/applications/misc/clipcat/default.nix +++ /dev/null @@ -1,49 +0,0 @@ -{ lib -, fetchFromGitHub -, rustPlatform -, protobuf -, installShellFiles -}: - -rustPlatform.buildRustPackage rec { - pname = "clipcat"; - version = "0.16.1"; - - src = fetchFromGitHub { - owner = "xrelkd"; - repo = pname; - rev = "v${version}"; - hash = "sha256-SqA8UjKTBtkE1IkWGeshI8KBHr86V9r/+YvFZNJ6Oq8="; - }; - - cargoHash = "sha256-KU3kXqy9zL7GQdSsCNW7jcsxdTuRXjJyDtBpmgoXi6E="; - - nativeBuildInputs = [ - protobuf - installShellFiles - ]; - - checkFlags = [ - # Some test cases interact with X11, skip them - "--skip=test_x11_clipboard" - "--skip=test_x11_primary" - ]; - - postInstall = '' - 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 = with lib; { - description = "Clipboard Manager written in Rust Programming Language"; - homepage = "https://github.com/xrelkd/clipcat"; - license = licenses.gpl3Only; - platforms = platforms.linux; - maintainers = with maintainers; [ xrelkd ]; - mainProgram = "clipcatd"; - }; -} -- cgit 1.4.1