clipbuzz: 2.0.0 -> 2.0.1

This commit is contained in:
Nguyễn Gia Phong 2023-08-11 14:29:04 +09:00
parent 4d2389b927
commit 83e09135a4
No known key found for this signature in database
GPG key ID: 84B69CE6F3F6B767

View file

@ -1,23 +1,21 @@
{ lib { lib
, stdenv , stdenv
, fetchFromSourcehut , fetchzip
, libX11 , libX11
, libXfixes , libXfixes
, zig_0_10 , zig_0_11
}: }:
stdenv.mkDerivation (finalAttrs: { stdenv.mkDerivation (finalAttrs: {
pname = "clipbuzz"; pname = "clipbuzz";
version = "2.0.0"; version = "2.0.1";
src = fetchFromSourcehut { src = fetchzip {
owner = "~cnx"; url = "https://trong.loang.net/~cnx/clipbuzz/snapshot/clipbuzz-${finalAttrs.version}.tar.gz";
repo = "clipbuzz"; hash = "sha256-2//IwthAjGyVSZaXjgpM1pUJGYWZVkrJ6JyrVbzOtr8=";
rev = finalAttrs.version;
hash = "sha256-V5bAZHoScTzFZBPUhPd7xc/c32SXPLAJp+vsc/lCyeI=";
}; };
nativeBuildInputs = [ zig_0_10.hook ]; nativeBuildInputs = [ zig_0_11.hook ];
buildInputs = [ buildInputs = [
libX11 libX11
@ -26,7 +24,7 @@ stdenv.mkDerivation (finalAttrs: {
meta = { meta = {
description = "Buzz on new X11 clipboard events"; description = "Buzz on new X11 clipboard events";
homepage = "https://git.sr.ht/~cnx/clipbuzz"; homepage = "https://trong.loang.net/~cnx/clipbuzz";
license = lib.licenses.unlicense; license = lib.licenses.unlicense;
maintainers = [ lib.maintainers.McSinyx ]; maintainers = [ lib.maintainers.McSinyx ];
}; };