about summary refs log tree commit diff
path: root/pkgs/tools/misc/clipbuzz/default.nix
blob: aaa37ad7c18f870cf03633c3d7ae2afe6fd93a62 (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
{ stdenv, lib, fetchFromSourcehut, zig, libX11, libXfixes }:

stdenv.mkDerivation rec {
  pname = "clipbuzz";
  version = "2.0.0";

  src = fetchFromSourcehut {
    owner = "~cnx";
    repo = pname;
    rev = version;
    sha256 = "1qn98bwp7v7blw4v0g4pckgxrky5ggvq9m0kck2kqw8jg9jc15jp";
  };

  nativeBuildInputs = [ zig ];
  buildInputs = [ libX11 libXfixes ];

  preBuild = ''
    export HOME=$TMPDIR
  '';

  installPhase = ''
    zig build -Drelease-safe -Dcpu=baseline --prefix $out install
  '';

  meta = with lib; {
    description = "Buzz on new X11 clipboard events";
    homepage = "https://git.sr.ht/~cnx/clipbuzz";
    license = licenses.unlicense;
    maintainers = [ maintainers.McSinyx ];
  };
}