nixpkgs/pkgs/development/libraries/ayatana-ido/default.nix

30 lines
848 B
Nix
Raw Normal View History

2020-05-24 16:25:07 +01:00
{ stdenv, fetchFromGitHub
, pkg-config, autoreconfHook
2020-05-24 16:25:07 +01:00
, gtk3, gobject-introspection, gtk-doc, vala
}:
stdenv.mkDerivation rec {
pname = "ayatana-ido";
2020-11-12 16:46:04 +00:00
version = "0.8.1";
2020-05-24 16:25:07 +01:00
src = fetchFromGitHub {
owner = "AyatanaIndicators";
repo = pname;
rev = version;
2020-11-12 16:46:04 +00:00
sha256 = "1mcw6gmacrzx4cyg4223dpwcmj3qf8l30mxsg43292lajzwsm2hz";
2020-05-24 16:25:07 +01:00
};
nativeBuildInputs = [ pkg-config autoreconfHook gtk-doc vala gobject-introspection ];
2020-05-24 16:25:07 +01:00
buildInputs = [ gtk3 ];
2020-05-24 16:25:07 +01:00
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.lgpl3Plus licenses.lgpl21Plus ];
2020-05-24 16:25:07 +01:00
maintainers = [ maintainers.nickhu ];
platforms = platforms.linux;
2020-05-24 16:25:07 +01:00
};
}