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