Merge pull request #233262 from heinwol/master

clipboard-jh: fixed broken system clipboard integration
This commit is contained in:
figsoda 2023-05-21 14:21:29 -04:00 committed by GitHub
commit 9689eb7d4b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -4,6 +4,7 @@
, cmake
, libffi
, pkg-config
, patchelf
, wayland-protocols
, wayland
, xorg
@ -45,6 +46,10 @@ stdenv.mkDerivation rec {
"-DINSTALL_PREFIX=${placeholder "out"}"
];
postFixup = lib.optionalString stdenv.isLinux ''
patchelf $out/bin/cb --add-rpath $out/lib
'';
meta = with lib; {
description = "Cut, copy, and paste anything, anywhere, all from the terminal";
homepage = "https://github.com/Slackadays/clipboard";