aboutsummaryrefslogtreecommitdiff
path: root/nixpkgs/pkgs/development/libraries/libayatana-indicator/default.nix
blob: 778e06aa95cea7d3f4fe9218c777c28f748db1d1 (plain)
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
{ stdenv, fetchFromGitHub, lib
, pkgconfig, autoreconfHook
, gtkVersion ? "3"
, gtk2
, gtk3
, ayatana-ido
}:

stdenv.mkDerivation rec {
  pname = "libayatana-indicator-gtk${gtkVersion}";
  version = "0.6.3";

  src = fetchFromGitHub {
    owner = "AyatanaIndicators";
    repo = "libayatana-indicator";
    rev = version;
    sha256 = "1q9wmaw6pckwyrv0s7wkqzm1yrk031pbz4xbr8cwn75ixqyfcb28";
  };

  nativeBuildInputs = [ pkgconfig autoreconfHook ];

  buildInputs = [ ayatana-ido ]
    ++ lib.lists.optionals (gtkVersion == "2") [ gtk2 ]
    ++ lib.lists.optionals (gtkVersion == "3") [ gtk3 ];

  configureFlags = [ "--with-gtk=${gtkVersion}" ];

  meta = with stdenv.lib; {
    description = "Ayatana Indicators Shared Library";
    homepage = "https://github.com/AyatanaIndicators/libayatana-indicator";
    changelog = "https://github.com/AyatanaIndicators/libayatana-indicator/blob/${version}/ChangeLog";
    license = licenses.gpl3;
    maintainers = [ maintainers.nickhu ];
    platforms = platforms.x86_64;
  };
}