nixpkgs/pkgs/applications/misc/polybar/default.nix

119 lines
3.2 KiB
Nix
Raw Normal View History

2021-02-12 12:34:35 +01:00
{ cairo
, cmake
, fetchFromGitHub
, libXdmcp
, libpthreadstubs
, libxcb
, pcre
, pkg-config
, python3
, lib
, stdenv
, xcbproto
, xcbutil
, xcbutilcursor
, xcbutilimage
, xcbutilrenderutil
, xcbutilwm
, xcbutilxrm
, makeWrapper
, removeReferencesTo
# optional packages-- override the variables ending in 'Support' to enable or
# disable modules
, alsaSupport ? true, alsaLib ? null
, githubSupport ? false, curl ? null
2021-02-12 12:34:35 +01:00
, mpdSupport ? false, libmpdclient ? null
, pulseSupport ? false, libpulseaudio ? null
2018-08-10 09:15:22 +02:00
, iwSupport ? false, wirelesstools ? null
, nlSupport ? true, libnl ? null
, i3Support ? false, i3GapsSupport ? false, i3 ? null, i3-gaps ? null, jsoncpp ? null
}:
assert alsaSupport -> alsaLib != null;
assert githubSupport -> curl != null;
2021-02-12 12:34:35 +01:00
assert mpdSupport -> libmpdclient != null;
assert pulseSupport -> libpulseaudio != null;
2018-08-10 09:15:22 +02:00
assert iwSupport -> ! nlSupport && wirelesstools != null;
assert nlSupport -> ! iwSupport && libnl != null;
assert i3Support -> ! i3GapsSupport && jsoncpp != null && i3 != null;
assert i3GapsSupport -> ! i3Support && jsoncpp != null && i3-gaps != null;
stdenv.mkDerivation rec {
2019-04-14 18:26:31 +02:00
pname = "polybar";
2020-12-22 14:41:43 +01:00
version = "3.5.2";
2019-04-14 18:26:31 +02:00
2018-12-24 04:12:49 +01:00
src = fetchFromGitHub {
owner = pname;
2019-04-14 18:26:31 +02:00
repo = pname;
rev = version;
2020-12-22 14:41:43 +01:00
sha256 = "1ir8fdnzrba9fkkjfvax5szx5h49lavwgl9pabjzrpbvif328g3x";
2018-12-24 04:12:49 +01:00
fetchSubmodules = true;
};
buildInputs = [
2021-02-12 12:34:35 +01:00
cairo
libXdmcp
libpthreadstubs
libxcb
pcre
python3
xcbproto
xcbutil
xcbutilcursor
xcbutilimage
xcbutilrenderutil
xcbutilwm
xcbutilxrm
(if alsaSupport then alsaLib else null)
(if githubSupport then curl else null)
2021-02-12 12:34:35 +01:00
(if mpdSupport then libmpdclient else null)
(if pulseSupport then libpulseaudio else null)
2018-08-10 09:15:22 +02:00
(if iwSupport then wirelesstools else null)
(if nlSupport then libnl else null)
(if i3Support || i3GapsSupport then jsoncpp else null)
(if i3Support then i3 else null)
(if i3GapsSupport then i3-gaps else null)
2018-05-07 01:39:32 +02:00
(if i3Support || i3GapsSupport then makeWrapper else null)
];
2021-02-12 12:34:35 +01:00
postInstall = if i3Support
then ''wrapProgram $out/bin/polybar \
--prefix PATH : "${i3}/bin"
''
else if i3GapsSupport
then ''wrapProgram $out/bin/polybar \
--prefix PATH : "${i3-gaps}/bin"
''
else '''';
2018-05-07 01:39:32 +02:00
nativeBuildInputs = [
2021-02-12 12:34:35 +01:00
cmake
pkg-config
removeReferencesTo
];
postFixup = ''
remove-references-to -t ${stdenv.cc} $out/bin/polybar
'';
2021-02-12 12:34:35 +01:00
meta = with lib; {
homepage = "https://polybar.github.io/";
description = "A fast and easy-to-use tool for creating status bars";
longDescription = ''
Polybar aims to help users build beautiful and highly customizable
status bars for their desktop environment, without the need of
having a black belt in shell scripting.
'';
license = licenses.mit;
maintainers = with maintainers; [ afldcr Br1ght0ne ];
platforms = platforms.linux;
};
}