clipbuzz: 2.0.0 -> 2.0.1

+8 -10
+8 -10
pkgs/tools/misc/clipbuzz/default.nix
··· 1 1 { lib 2 2 , stdenv 3 - , fetchFromSourcehut 3 + , fetchzip 4 4 , libX11 5 5 , libXfixes 6 - , zig_0_10 6 + , zig_0_11 7 7 }: 8 8 9 9 stdenv.mkDerivation (finalAttrs: { 10 10 pname = "clipbuzz"; 11 - version = "2.0.0"; 11 + version = "2.0.1"; 12 12 13 - src = fetchFromSourcehut { 14 - owner = "~cnx"; 15 - repo = "clipbuzz"; 16 - rev = finalAttrs.version; 17 - hash = "sha256-V5bAZHoScTzFZBPUhPd7xc/c32SXPLAJp+vsc/lCyeI="; 13 + src = fetchzip { 14 + url = "https://trong.loang.net/~cnx/clipbuzz/snapshot/clipbuzz-${finalAttrs.version}.tar.gz"; 15 + hash = "sha256-2//IwthAjGyVSZaXjgpM1pUJGYWZVkrJ6JyrVbzOtr8="; 18 16 }; 19 17 20 - nativeBuildInputs = [ zig_0_10.hook ]; 18 + nativeBuildInputs = [ zig_0_11.hook ]; 21 19 22 20 buildInputs = [ 23 21 libX11 ··· 26 24 27 25 meta = { 28 26 description = "Buzz on new X11 clipboard events"; 29 - homepage = "https://git.sr.ht/~cnx/clipbuzz"; 27 + homepage = "https://trong.loang.net/~cnx/clipbuzz"; 30 28 license = lib.licenses.unlicense; 31 29 maintainers = [ lib.maintainers.McSinyx ]; 32 30 };