30 lines
839 B
Nix
30 lines
839 B
Nix
{ 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;
|
|
};
|
|
}
|