aboutsummaryrefslogtreecommitdiff
path: root/nixpkgs/pkgs/development/libraries/ayatana-ido/default.nix
blob: 66ead87daa0747a92e0814e99477f231e57fef66 (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.8.0";

  src = fetchFromGitHub {
    owner = "AyatanaIndicators";
    repo = pname;
    rev = version;
    sha256 = "1jmdvvgrgicpnpnygc24qcisqb9y026541gb6lw6fwapvc9aj73p";
  };

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