1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-25 07:00:43 +00:00

Merge pull request #67682 from valebes/waybar-0.8.0

waybar: 0.7.2 -> 0.8.0
This commit is contained in:
Marek Mahut 2019-08-30 10:30:08 +02:00 committed by GitHub
commit dcdaaa463d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,5 +1,5 @@
{ stdenv, fetchFromGitHub, meson, pkgconfig, ninja
, wayland, wlroots, gtkmm3, libinput, libsigcxx, jsoncpp, fmt, spdlog
, wayland, wlroots, gtkmm3, libinput, libsigcxx, jsoncpp, fmt, scdoc, spdlog
, traySupport ? true, libdbusmenu-gtk3
, pulseSupport ? false, libpulseaudio
, nlSupport ? true, libnl
@ -9,17 +9,17 @@
}:
stdenv.mkDerivation rec {
pname = "waybar";
version = "0.7.2";
version = "0.8.0";
src = fetchFromGitHub {
owner = "Alexays";
repo = "Waybar";
rev = version;
sha256 = "15biyr422s5f2csw395fz9cikir9wffdwqq8y0i6ayzpymzsqbzs";
sha256 = "0s8ck7qxka0l91ayma6amp9sc8cidi43byqgzcavi3a6id983r1z";
};
nativeBuildInputs = [
meson ninja pkgconfig
meson ninja pkgconfig scdoc
];
buildInputs = with stdenv.lib;