depot/third_party/nixpkgs/pkgs/tools/misc/clipbuzz/default.nix

34 lines
625 B
Nix
Raw Normal View History

{ lib
, stdenv
, fetchFromSourcehut
, libX11
, libXfixes
, zig_0_10
}:
stdenv.mkDerivation (finalAttrs: {
pname = "clipbuzz";
version = "2.0.0";
src = fetchFromSourcehut {
owner = "~cnx";
repo = "clipbuzz";
rev = finalAttrs.version;
hash = "sha256-V5bAZHoScTzFZBPUhPd7xc/c32SXPLAJp+vsc/lCyeI=";
};
nativeBuildInputs = [ zig_0_10.hook ];
buildInputs = [
libX11
libXfixes
];
meta = {
description = "Buzz on new X11 clipboard events";
homepage = "https://git.sr.ht/~cnx/clipbuzz";
license = lib.licenses.unlicense;
maintainers = [ lib.maintainers.McSinyx ];
};
})