Skip to content

Commit e1b54fc

Browse files
committed
wayland-colorbar: init at 0.1.1
1 parent 763817a commit e1b54fc

1 file changed

Lines changed: 46 additions & 0 deletions

File tree

Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
{
2+
lib,
3+
stdenv,
4+
fetchFromCodeberg,
5+
cmake,
6+
libffi,
7+
pkg-config,
8+
wayland,
9+
wayland-protocols,
10+
wayland-scanner,
11+
nix-update-script,
12+
}:
13+
14+
stdenv.mkDerivation (finalAttrs: {
15+
pname = "wayland-colorbar";
16+
version = "0.1.1";
17+
18+
src = fetchFromCodeberg {
19+
owner = "Pandapip1";
20+
repo = "wayland-colorbar";
21+
tag = finalAttrs.version;
22+
hash = "sha256-QaJWx5/DkxSc53BFufJwxYwwsJNSV2mYV5EjbFDmx3c=";
23+
};
24+
25+
nativeBuildInputs = [
26+
cmake
27+
pkg-config
28+
];
29+
buildInputs = [
30+
libffi
31+
wayland
32+
wayland-protocols
33+
wayland-scanner
34+
];
35+
36+
passthru.updateScript = nix-update-script { };
37+
38+
meta = {
39+
description = "A simple wayland client that can be used for testing";
40+
homepage = "https://codeberg.org/Pandapip1/wayland-colorbar";
41+
license = lib.licenses.gpl3Plus;
42+
maintainers = with lib.maintainers; [ pandapip1 ];
43+
mainProgram = "wayland-colorbar";
44+
platforms = lib.platforms.unix;
45+
};
46+
})

0 commit comments

Comments
 (0)