mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 18:26:45 +01:00
30 lines
845 B
Nix
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;
|
|
};
|
|
}
|