From 149b42d8ee7fe25cd05d24d6d1f915e079f8886e Mon Sep 17 00:00:00 2001 From: Edmund Wu Date: Sat, 21 Jul 2018 11:32:16 -0400 Subject: polybar: 3.1.0 -> 3.2.0 Adds support for internal/pulseaudio --- pkgs/applications/misc/polybar/default.nix | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) (limited to 'pkgs/applications/misc/polybar') diff --git a/pkgs/applications/misc/polybar/default.nix b/pkgs/applications/misc/polybar/default.nix index 05ad3e2a906..651a72bef95 100644 --- a/pkgs/applications/misc/polybar/default.nix +++ b/pkgs/applications/misc/polybar/default.nix @@ -8,6 +8,7 @@ , iwSupport ? true, wirelesstools ? null , githubSupport ? false, curl ? null , mpdSupport ? false, mpd_clientlib ? null +, pulseSupport ? false, libpulseaudio ? null , i3Support ? false, i3GapsSupport ? false, i3 ? null, i3-gaps ? null, jsoncpp ? null }: @@ -15,17 +16,18 @@ assert alsaSupport -> alsaLib != null; assert githubSupport -> curl != null; assert iwSupport -> wirelesstools != null; assert mpdSupport -> mpd_clientlib != null; +assert pulseSupport -> libpulseaudio != null; assert i3Support -> ! i3GapsSupport && jsoncpp != null && i3 != null; assert i3GapsSupport -> ! i3Support && jsoncpp != null && i3-gaps != null; stdenv.mkDerivation rec { name = "polybar-${version}"; - version = "3.1.0"; + version = "3.2.0"; src = fetchgit { url = "https://github.com/jaagr/polybar"; - rev = "bf16a4d415ea7d8845f578544de0c71e56ad314e"; - sha256 = "1jcvqxl0477j0snvh1rzqsm1dkfsybix2lgrlsgiczdxfknwz8iy"; + rev = version; + sha256 = "0p94brndysvmmbidhl4ds4w3qvddb752s4vryp0qckb0hz3knqk8"; }; meta = with stdenv.lib; { @@ -48,6 +50,7 @@ stdenv.mkDerivation rec { (if githubSupport then curl else null) (if iwSupport then wirelesstools else null) (if mpdSupport then mpd_clientlib else null) + (if pulseSupport then libpulseaudio else null) (if i3Support || i3GapsSupport then jsoncpp else null) (if i3Support then i3 else null) -- cgit 1.4.1