nixpkgs/pkgs/applications/window-managers/sway/bg.nix

38 lines
1 KiB
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub
, meson, ninja, pkg-config, scdoc
2019-05-22 11:03:39 +00:00
, wayland, wayland-protocols, cairo, gdk-pixbuf
, wayland-scanner
2019-05-03 20:26:20 +00:00
}:
stdenv.mkDerivation rec {
pname = "swaybg";
2019-05-03 20:26:20 +00:00
version = "1.0";
src = fetchFromGitHub {
owner = "swaywm";
repo = "swaybg";
rev = version;
sha256 = "1lmqz5bmig90gq2m7lwf02d2g7z4hzf8fhqz78c8vk92c6p4xwbc";
};
nativeBuildInputs = [ meson ninja pkg-config scdoc wayland-scanner ];
2019-05-22 11:03:39 +00:00
buildInputs = [ wayland wayland-protocols cairo gdk-pixbuf ];
2019-05-03 20:26:20 +00:00
mesonFlags = [
"-Dgdk-pixbuf=enabled" "-Dman-pages=enabled"
];
meta = with lib; {
2019-05-03 20:26:20 +00:00
description = "Wallpaper tool for Wayland compositors";
longDescription = ''
A wallpaper utility for Wayland compositors, that is compatible with any
Wayland compositor which implements the following Wayland protocols:
wlr-layer-shell, xdg-output, and xdg-shell.
'';
inherit (src.meta) homepage;
license = licenses.mit;
platforms = platforms.linux;
maintainers = with maintainers; [ primeos ];
};
}