3
0
Fork 0
forked from mirrors/nixpkgs

clipboard-jh: 0.7.1 -> 0.8.0

This commit is contained in:
happysalada 2023-06-11 19:24:40 -04:00
parent 9401a0c780
commit 81c64e5ab8

View file

@ -4,22 +4,22 @@
, cmake , cmake
, libffi , libffi
, pkg-config , pkg-config
, patchelf
, wayland-protocols , wayland-protocols
, wayland , wayland
, xorg , xorg
, darwin , darwin
, nix-update-script
}: }:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
pname = "clipboard-jh"; pname = "clipboard-jh";
version = "0.7.1"; version = "0.8.0";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "Slackadays"; owner = "Slackadays";
repo = "clipboard"; repo = "clipboard";
rev = version; rev = version;
hash = "sha256-RLb7R4BXnP7J5gX8hsE9yi6N3kezsutP1HqkmjR3yRs="; hash = "sha256-1HWWrBI96znHctoMhQyO46Jmbg1jXPcvkDdwiWwp4KE=";
}; };
postPatch = '' postPatch = ''
@ -50,6 +50,8 @@ stdenv.mkDerivation rec {
patchelf $out/bin/cb --add-rpath $out/lib patchelf $out/bin/cb --add-rpath $out/lib
''; '';
passthru.updateScript = nix-update-script { };
meta = with lib; { meta = with lib; {
description = "Cut, copy, and paste anything, anywhere, all from the terminal"; description = "Cut, copy, and paste anything, anywhere, all from the terminal";
homepage = "https://github.com/Slackadays/clipboard"; homepage = "https://github.com/Slackadays/clipboard";