File tree Expand file tree Collapse file tree
pkgs/by-name/wa/wayland-colorbar Expand file tree Collapse file tree Original file line number Diff line number Diff line change 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+ } )
You can’t perform that action at this time.
0 commit comments