Merge pull request #268860 from xrelkd/update/clipcat

clipcat: 0.5.0 -> 0.5.1
This commit is contained in:
Nick Cao
2023-11-21 08:46:35 -05:00
committed by GitHub
2 changed files with 1100 additions and 666 deletions
+1086 -662
View File
File diff suppressed because it is too large Load Diff
+14 -4
View File
@@ -1,15 +1,23 @@
{ lib, fetchFromGitHub, installShellFiles, rustPlatform, rustfmt, xorg
, pkg-config, llvmPackages, clang, protobuf, python3 }:
{ lib
, fetchFromGitHub
, installShellFiles
, rustPlatform
, rustfmt
, xorg
, pkg-config
, protobuf
, python3
}:
rustPlatform.buildRustPackage rec {
pname = "clipcat";
version = "0.5.0";
version = "0.5.1";
src = fetchFromGitHub {
owner = "xrelkd";
repo = pname;
rev = "v${version}";
sha256 = "0rxl3ksjinw07q3p2vjqg80k3c6wx2q7pzpf2344zyfb4gkqzx1c";
sha256 = "sha256-dV17xP6xG6Nyi6m0CdH8Mk4Y0giDtsv/QiM23jF58q0=";
};
cargoLock = {
@@ -35,6 +43,7 @@ rustPlatform.buildRustPackage rec {
installShellFiles
];
buildInputs = [ xorg.libxcb ];
buildFeatures = [ "all" ];
@@ -51,5 +60,6 @@ rustPlatform.buildRustPackage rec {
license = licenses.gpl3Only;
platforms = platforms.linux;
maintainers = with maintainers; [ xrelkd ];
mainProgram = "clipcatd";
};
}