about summary refs log tree commit diff
path: root/pkgs/tools/misc/clipbuzz/default.nix
blob: 1d4b614846a6830255d13f07ec81a467056fe031 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
{ lib
, stdenv
, fetchzip
, libX11
, libXfixes
, zig
}:

stdenv.mkDerivation (finalAttrs: {
  pname = "clipbuzz";
  version = "2.0.1";

  src = fetchzip {
    url = "https://trong.loang.net/~cnx/clipbuzz/snapshot/clipbuzz-${finalAttrs.version}.tar.gz";
    hash = "sha256-2//IwthAjGyVSZaXjgpM1pUJGYWZVkrJ6JyrVbzOtr8=";
  };

  nativeBuildInputs = [ zig.hook ];

  buildInputs = [
    libX11
    libXfixes
  ];

  meta = {
    description = "Buzz on new X11 clipboard events";
    homepage = "https://trong.loang.net/~cnx/clipbuzz";
    license = lib.licenses.unlicense;
    maintainers = [ lib.maintainers.McSinyx ];
    mainProgram = "clipbuzz";
  };
})