3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/applications/window-managers/sway/bg.nix

39 lines
1.1 KiB
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub
, meson, ninja, pkg-config, scdoc
2019-05-22 12:03:39 +01:00
, wayland, wayland-protocols, cairo, gdk-pixbuf
, wayland-scanner
2019-05-03 21:26:20 +01:00
}:
stdenv.mkDerivation rec {
pname = "swaybg";
2021-07-19 13:37:43 +01:00
version = "1.1";
2019-05-03 21:26:20 +01:00
src = fetchFromGitHub {
owner = "swaywm";
repo = "swaybg";
2021-07-19 13:37:43 +01:00
rev = "v${version}";
sha256 = "17508q9wsw6c1lsxlcbxj74z2naqhwi5c7lkbq24m4lk8qmy0576";
2019-05-03 21:26:20 +01:00
};
2021-08-18 21:20:15 +01:00
depsBuildBuild = [ pkg-config ];
nativeBuildInputs = [ meson ninja pkg-config scdoc wayland-scanner ];
2019-05-22 12:03:39 +01:00
buildInputs = [ wayland wayland-protocols cairo gdk-pixbuf ];
2019-05-03 21:26:20 +01:00
mesonFlags = [
"-Dgdk-pixbuf=enabled" "-Dman-pages=enabled"
];
meta = with lib; {
2019-05-03 21:26:20 +01: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 ];
};
}