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

116 lines
2.7 KiB
Nix
Raw Normal View History

2021-02-12 11:34:35 +00:00
{ cairo
, cmake
, fetchFromGitHub
, libXdmcp
, libpthreadstubs
, libxcb
, pcre
, pkg-config
, python3
2021-04-21 03:10:35 +00:00
, python3Packages # sphinx-build
2021-02-12 11:34:35 +00:00
, lib
, stdenv
, xcbproto
, xcbutil
, xcbutilcursor
, xcbutilimage
, xcbutilrenderutil
, xcbutilwm
, xcbutilxrm
, makeWrapper
, removeReferencesTo
, alsa-lib
2021-04-21 03:22:25 +00:00
, curl
, libmpdclient
, libpulseaudio
, wirelesstools
, libnl
, i3
, i3-gaps
, jsoncpp
2021-04-21 03:22:25 +00:00
# override the variables ending in 'Support' to enable or disable modules
, alsaSupport ? true
, githubSupport ? false
, mpdSupport ? false
, pulseSupport ? false
, iwSupport ? false
, nlSupport ? true
, i3Support ? false
, i3GapsSupport ? false
}:
stdenv.mkDerivation rec {
2019-04-14 16:26:31 +00:00
pname = "polybar";
2021-05-24 02:41:24 +00:00
version = "3.5.6";
2019-04-14 16:26:31 +00:00
2018-12-24 03:12:49 +00:00
src = fetchFromGitHub {
owner = pname;
2019-04-14 16:26:31 +00:00
repo = pname;
rev = version;
2021-05-24 02:41:24 +00:00
sha256 = "sha256-Uvj9V2M/uQxyziTx1hecrcaQZECijlpVmWcUeT+PqrI=";
2018-12-24 03:12:49 +00:00
fetchSubmodules = true;
};
2021-04-21 03:10:35 +00:00
nativeBuildInputs = [
cmake
pkg-config
python3Packages.sphinx
removeReferencesTo
2021-04-22 09:11:42 +00:00
]
++ lib.optional (i3Support || i3GapsSupport) makeWrapper;
2021-04-21 03:10:35 +00:00
buildInputs = [
2021-02-12 11:34:35 +00:00
cairo
libXdmcp
libpthreadstubs
libxcb
pcre
python3
xcbproto
xcbutil
xcbutilcursor
xcbutilimage
xcbutilrenderutil
xcbutilwm
xcbutilxrm
2021-04-22 09:11:42 +00:00
]
++ lib.optional alsaSupport alsa-lib
2021-04-22 09:11:42 +00:00
++ lib.optional githubSupport curl
++ lib.optional mpdSupport libmpdclient
++ lib.optional pulseSupport libpulseaudio
++ lib.optional iwSupport wirelesstools
++ lib.optional nlSupport libnl
++ lib.optional (i3Support || i3GapsSupport) jsoncpp
++ lib.optional i3Support i3
++ lib.optional i3GapsSupport i3-gaps;
2021-02-12 11:34:35 +00: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-06 23:39:32 +00:00
postFixup = ''
remove-references-to -t ${stdenv.cc} $out/bin/polybar
'';
2021-02-12 11:34:35 +00:00
meta = with lib; {
homepage = "https://polybar.github.io/";
2021-04-21 03:10:35 +00:00
changelog = "https://github.com/polybar/polybar/releases/tag/${version}";
2021-02-12 11:34:35 +00:00
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;
2021-04-21 03:10:35 +00:00
maintainers = with maintainers; [ afldcr Br1ght0ne fortuneteller2k ];
2021-02-12 11:34:35 +00:00
platforms = platforms.linux;
};
}