nixpkgs/pkgs/development/libraries/ayatana-ido/default.nix
2021-01-29 14:14:08 +00:00

30 lines
845 B
Nix

{ lib, stdenv, fetchFromGitHub
, pkg-config, autoreconfHook
, gtk3, gobject-introspection, gtk-doc, vala
}:
stdenv.mkDerivation rec {
pname = "ayatana-ido";
version = "0.8.2";
src = fetchFromGitHub {
owner = "AyatanaIndicators";
repo = pname;
rev = version;
sha256 = "sha256-nJ4F2faK0XZPj9GzUk3Ueap5h6rALFXISHqFQ30RuoU=";
};
nativeBuildInputs = [ pkg-config autoreconfHook gtk-doc vala gobject-introspection ];
buildInputs = [ gtk3 ];
meta = with 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 ];
maintainers = [ maintainers.nickhu ];
platforms = platforms.linux;
};
}