Merge pull request #207928 from dit7ya/clipboard

This commit is contained in:
Sandro 2023-04-01 23:55:13 +02:00 committed by GitHub
commit cb6e97237b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 50 additions and 0 deletions

View file

@ -0,0 +1,48 @@
{ lib
, stdenv
, fetchFromGitHub
, cmake
, libffi
, pkg-config
, wayland-protocols
, wayland
, xorg
}:
stdenv.mkDerivation rec {
pname = "clipboard-jh";
version = "0.3.2";
src = fetchFromGitHub {
owner = "Slackadays";
repo = "clipboard";
rev = version;
sha256 = "sha256-xdogl2WDuQXeLFuBY1u7PSpaoVI9HKScOdxHZ3+whIg=";
};
nativeBuildInputs = [
cmake
pkg-config
];
buildInputs = [
libffi
wayland-protocols
wayland
xorg.libX11
];
cmakeFlags = [
"-DCMAKE_BUILD_TYPE='MinSizeRel'"
"-Wno-dev"
"-DINSTALL_PREFIX=${placeholder "out"}"
];
meta = with lib; {
description = "Cut, copy, and paste anything, anywhere, all from the terminal";
homepage = "https://github.com/Slackadays/clipboard";
license = licenses.gpl3Only;
maintainers = with maintainers; [ dit7ya ];
mainProgram = "clipboard";
};
}

View file

@ -13820,6 +13820,8 @@ with pkgs;
clipnotify = callPackage ../tools/misc/clipnotify { };
clipboard-jh = callPackage ../tools/misc/clipboard-jh { };
clipbuzz = callPackage ../tools/misc/clipbuzz { };
xclip = callPackage ../tools/misc/xclip { };