summary refs log tree commit diff
path: root/pkgs/applications/misc/polybar/default.nix
blob: 099813483a4afee244ce2eea7c91b118d8b5b482 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
{ cairo
, cmake
, fetchFromGitHub
, libXdmcp
, libpthreadstubs
, libxcb
, pcre
, pkg-config
, python3
, python3Packages # sphinx-build
, lib
, stdenv
, xcbproto
, xcbutil
, xcbutilcursor
, xcbutilimage
, xcbutilrenderutil
, xcbutilwm
, xcbutilxrm
, makeWrapper
, removeReferencesTo
, alsa-lib
, curl
, libmpdclient
, libpulseaudio
, wirelesstools
, libnl
, i3
, i3-gaps
, jsoncpp

# 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 {
    pname = "polybar";
    version = "3.5.6";

    src = fetchFromGitHub {
      owner = pname;
      repo = pname;
      rev = version;
      sha256 = "sha256-Uvj9V2M/uQxyziTx1hecrcaQZECijlpVmWcUeT+PqrI=";
      fetchSubmodules = true;
    };

    nativeBuildInputs = [
      cmake
      pkg-config
      python3Packages.sphinx
      removeReferencesTo
    ]
    ++ lib.optional (i3Support || i3GapsSupport) makeWrapper;

    buildInputs = [
      cairo
      libXdmcp
      libpthreadstubs
      libxcb
      pcre
      python3
      xcbproto
      xcbutil
      xcbutilcursor
      xcbutilimage
      xcbutilrenderutil
      xcbutilwm
      xcbutilxrm
    ]
    ++ lib.optional alsaSupport alsa-lib
    ++ 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;

    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 '''';

    postFixup = ''
        remove-references-to -t ${stdenv.cc} $out/bin/polybar
    '';

    meta = with lib; {
      homepage = "https://polybar.github.io/";
      changelog = "https://github.com/polybar/polybar/releases/tag/${version}";
      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 fortuneteller2k ];
      platforms = platforms.linux;
    };
}