tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
clipbuzz: 2.0.0 -> 2.0.1
Nguyễn Gia Phong
2 years ago
83e09135
4d2389b9
+8
-10
1 changed file
expand all
collapse all
unified
split
pkgs
tools
misc
clipbuzz
default.nix
+8
-10
pkgs/tools/misc/clipbuzz/default.nix
···
1
1
{ lib
2
2
, stdenv
3
3
-
, fetchFromSourcehut
3
3
+
, fetchzip
4
4
, libX11
5
5
, libXfixes
6
6
-
, zig_0_10
6
6
+
, zig_0_11
7
7
}:
8
8
9
9
stdenv.mkDerivation (finalAttrs: {
10
10
pname = "clipbuzz";
11
11
-
version = "2.0.0";
11
11
+
version = "2.0.1";
12
12
13
13
-
src = fetchFromSourcehut {
14
14
-
owner = "~cnx";
15
15
-
repo = "clipbuzz";
16
16
-
rev = finalAttrs.version;
17
17
-
hash = "sha256-V5bAZHoScTzFZBPUhPd7xc/c32SXPLAJp+vsc/lCyeI=";
13
13
+
src = fetchzip {
14
14
+
url = "https://trong.loang.net/~cnx/clipbuzz/snapshot/clipbuzz-${finalAttrs.version}.tar.gz";
15
15
+
hash = "sha256-2//IwthAjGyVSZaXjgpM1pUJGYWZVkrJ6JyrVbzOtr8=";
18
16
};
19
17
20
20
-
nativeBuildInputs = [ zig_0_10.hook ];
18
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
29
-
homepage = "https://git.sr.ht/~cnx/clipbuzz";
27
27
+
homepage = "https://trong.loang.net/~cnx/clipbuzz";
30
28
license = lib.licenses.unlicense;
31
29
maintainers = [ lib.maintainers.McSinyx ];
32
30
};