summaryrefslogtreecommitdiffstats
path: root/pkgs/development/libraries/ayatana-ido/default.nix
blob: 41e4c92e56b68b5b8d140e34fbb78633fe79e6de (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
{ stdenv, fetchFromGitHub
, pkgconfig, autoreconfHook
, gtk3, gobject-introspection, gtk-doc, vala
}:

stdenv.mkDerivation rec {
  pname = "ayatana-ido";
  version = "0.4.90";

  src = fetchFromGitHub {
    owner = "AyatanaIndicators";
    repo = pname;
    rev = version;
    sha256 = "02vqjryni96zzrpkq5d7kvgw7nf252d2fm2xq8fklvvb2vz3fa0w";
  };

  nativeBuildInputs = [ pkgconfig autoreconfHook gtk-doc vala ];

  buildInputs = [ gtk3 gobject-introspection ];

  meta = with stdenv.lib; {
    description = "Ayatana Display Indicator Objects";
    homepage = "https://github.com/AyatanaIndicators/ayatana-ido";
    changelog = "https://github.com/AyatanaIndicators/ayatana-ido/blob/${version}/ChangeLog";
    license = [ licenses.gpl3 licenses.lgpl21 ];
    maintainers = [ maintainers.nickhu ];
    platforms = platforms.x86_64;
  };
}