2021-01-21 18:00:13 +01:00
|
|
|
{ lib, stdenv, fetchFromGitHub
|
2020-10-13 15:13:10 +02:00
|
|
|
, pkg-config, autoreconfHook
|
2020-05-24 17:25:07 +02:00
|
|
|
, gtk3, gobject-introspection, gtk-doc, vala
|
|
|
|
}:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "ayatana-ido";
|
2021-01-29 15:14:08 +01:00
|
|
|
version = "0.8.2";
|
2020-05-24 17:25:07 +02:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "AyatanaIndicators";
|
|
|
|
repo = pname;
|
|
|
|
rev = version;
|
2021-01-29 15:14:08 +01:00
|
|
|
sha256 = "sha256-nJ4F2faK0XZPj9GzUk3Ueap5h6rALFXISHqFQ30RuoU=";
|
2020-05-24 17:25:07 +02:00
|
|
|
};
|
|
|
|
|
2020-10-13 15:13:10 +02:00
|
|
|
nativeBuildInputs = [ pkg-config autoreconfHook gtk-doc vala gobject-introspection ];
|
2020-05-24 17:25:07 +02:00
|
|
|
|
2020-10-13 15:13:10 +02:00
|
|
|
buildInputs = [ gtk3 ];
|
2020-05-24 17:25:07 +02:00
|
|
|
|
2021-01-21 18:00:13 +01:00
|
|
|
meta = with lib; {
|
2020-05-24 17:25:07 +02:00
|
|
|
description = "Ayatana Display Indicator Objects";
|
|
|
|
homepage = "https://github.com/AyatanaIndicators/ayatana-ido";
|
|
|
|
changelog = "https://github.com/AyatanaIndicators/ayatana-ido/blob/${version}/ChangeLog";
|
2020-10-13 15:13:10 +02:00
|
|
|
license = [ licenses.lgpl3Plus licenses.lgpl21Plus ];
|
2020-05-24 17:25:07 +02:00
|
|
|
maintainers = [ maintainers.nickhu ];
|
2020-10-13 15:13:10 +02:00
|
|
|
platforms = platforms.linux;
|
2020-05-24 17:25:07 +02:00
|
|
|
};
|
|
|
|
}
|