2021-02-05 17:12:51 +00:00
|
|
|
{ lib, stdenv, fetchFromGitHub
|
2022-10-21 18:38:19 +00:00
|
|
|
, pkg-config, cmake
|
|
|
|
, gtk3
|
2020-08-20 17:08:02 +00:00
|
|
|
}:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "ayatana-ido";
|
2023-10-09 19:29:22 +00:00
|
|
|
version = "0.10.1";
|
2020-08-20 17:08:02 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "AyatanaIndicators";
|
|
|
|
repo = pname;
|
|
|
|
rev = version;
|
2023-10-09 19:29:22 +00:00
|
|
|
sha256 = "sha256-uecUyqSL02SRdlLbWIy0luHACTFoyMXQ6rOIYuisZsw=";
|
2020-08-20 17:08:02 +00:00
|
|
|
};
|
|
|
|
|
2022-10-21 18:38:19 +00:00
|
|
|
nativeBuildInputs = [ pkg-config cmake ];
|
2020-08-20 17:08:02 +00:00
|
|
|
|
2020-10-16 20:44:37 +00:00
|
|
|
buildInputs = [ gtk3 ];
|
2020-08-20 17:08:02 +00:00
|
|
|
|
2021-02-05 17:12:51 +00:00
|
|
|
meta = with lib; {
|
2020-08-20 17:08:02 +00: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-16 20:44:37 +00:00
|
|
|
license = [ licenses.lgpl3Plus licenses.lgpl21Plus ];
|
2020-08-20 17:08:02 +00:00
|
|
|
maintainers = [ maintainers.nickhu ];
|
2020-10-16 20:44:37 +00:00
|
|
|
platforms = platforms.linux;
|
2020-08-20 17:08:02 +00:00
|
|
|
};
|
|
|
|
}
|