Unverified Commit b3845c3a authored by Nick Cao's avatar Nick Cao Committed by GitHub
Browse files

Merge pull request #268860 from xrelkd/update/clipcat

clipcat: 0.5.0 -> 0.5.1
parents 3571f1c7 1e347be5
Loading
Loading
Loading
Loading
+1045 −621

File changed.

Preview size limit exceeded, changes collapsed.

+14 −4
Original line number Diff line number Diff line
{ 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";
  };
}