lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at 24.05-pre 31 lines 636 B view raw
1{ lib 2, stdenv 3, fetchzip 4, libX11 5, libXfixes 6, zig_0_11 7}: 8 9stdenv.mkDerivation (finalAttrs: { 10 pname = "clipbuzz"; 11 version = "2.0.1"; 12 13 src = fetchzip { 14 url = "https://trong.loang.net/~cnx/clipbuzz/snapshot/clipbuzz-${finalAttrs.version}.tar.gz"; 15 hash = "sha256-2//IwthAjGyVSZaXjgpM1pUJGYWZVkrJ6JyrVbzOtr8="; 16 }; 17 18 nativeBuildInputs = [ zig_0_11.hook ]; 19 20 buildInputs = [ 21 libX11 22 libXfixes 23 ]; 24 25 meta = { 26 description = "Buzz on new X11 clipboard events"; 27 homepage = "https://trong.loang.net/~cnx/clipbuzz"; 28 license = lib.licenses.unlicense; 29 maintainers = [ lib.maintainers.McSinyx ]; 30 }; 31})