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

30 lines
845 B
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub
, 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
};
nativeBuildInputs = [ pkg-config autoreconfHook gtk-doc vala gobject-introspection ];
2020-05-24 17:25:07 +02:00
buildInputs = [ gtk3 ];
2020-05-24 17:25:07 +02: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";
license = [ licenses.lgpl3Plus licenses.lgpl21Plus ];
2020-05-24 17:25:07 +02:00
maintainers = [ maintainers.nickhu ];
platforms = platforms.linux;
2020-05-24 17:25:07 +02:00
};
}