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