nixpkgs/pkgs/development/libraries/ayatana-ido/default.nix
2020-08-31 17:16:59 -07:00

30 lines
838 B
Nix

{ stdenv, fetchFromGitHub
, pkgconfig, autoreconfHook
, gtk3, gobject-introspection, gtk-doc, vala
}:
stdenv.mkDerivation rec {
pname = "ayatana-ido";
version = "0.8.0";
src = fetchFromGitHub {
owner = "AyatanaIndicators";
repo = pname;
rev = version;
sha256 = "1jmdvvgrgicpnpnygc24qcisqb9y026541gb6lw6fwapvc9aj73p";
};
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;
};
}