about summary refs log tree commit diff
path: root/nixpkgs/pkgs/applications/misc/wbg/default.nix
blob: 4f385ef21740f3d27bad54401ae4f78fd0358037 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
{ stdenv
, lib
, fetchgit
, meson
, ninja
, pkg-config
, git
, scdoc
, cairo
, fcft
, libpng
, librsvg
, libxkbcommon
, pixman
, tllist
, wayland
, wayland-protocols
, wlroots
}:

stdenv.mkDerivation rec {
  pname = "wbg";
  version = "unstable-2020-08-01";

  src = fetchgit {
    url = "https://codeberg.org/dnkl/wbg";
    rev = "1b05bd80d0f40e3ba1e977002d0653f532649269";
    sha256 = "0i1j7aqvj0vl2ww5cvffqci1kjqjn0sw6sp2j0ljblaif6qk9asc";
  };

  nativeBuildInputs = [ pkg-config meson ninja scdoc git ];
  buildInputs = [
    cairo
    fcft
    libpng
    librsvg
    libxkbcommon
    pixman
    tllist
    wayland
    wayland-protocols
    wlroots
  ];

  meta = with lib; {
    description = "Wallpaper application for Wayland compositors";
    homepage = "https://codeberg.org/dnkl/wbg";
    license = licenses.isc;
    maintainers = with maintainers; [ AndersonTorres ];
    platforms = with platforms; linux;
  };
}