nixpkgs/pkgs/development/libraries/libayatana-indicator/default.nix

37 lines
1,008 B
Nix
Raw Normal View History

2020-05-24 15:25:38 +00:00
{ stdenv, fetchFromGitHub, lib
, pkg-config, autoreconfHook
2020-05-24 15:25:38 +00:00
, gtkVersion ? "3"
, gtk2
, gtk3
, ayatana-ido
}:
stdenv.mkDerivation rec {
pname = "libayatana-indicator-gtk${gtkVersion}";
version = "0.8.2";
2020-05-24 15:25:38 +00:00
src = fetchFromGitHub {
owner = "AyatanaIndicators";
repo = "libayatana-indicator";
rev = version;
sha256 = "1wlqm3pj12vgz587a72widbg0vcmm1klsd2lh3mpzfy20m3vjxhj";
2020-05-24 15:25:38 +00:00
};
nativeBuildInputs = [ pkg-config autoreconfHook ];
2020-05-24 15:25:38 +00:00
buildInputs = [ ayatana-ido ]
++ lib.optionals (gtkVersion == "2") [ gtk2 ]
++ lib.optionals (gtkVersion == "3") [ gtk3 ];
2020-05-24 15:25:38 +00:00
configureFlags = [ "--with-gtk=${gtkVersion}" ];
meta = with lib; {
2020-05-24 15:25:38 +00:00
description = "Ayatana Indicators Shared Library";
homepage = "https://github.com/AyatanaIndicators/libayatana-indicator";
changelog = "https://github.com/AyatanaIndicators/libayatana-indicator/blob/${version}/ChangeLog";
license = licenses.gpl3Plus;
2020-05-24 15:25:38 +00:00
maintainers = [ maintainers.nickhu ];
platforms = platforms.linux;
2020-05-24 15:25:38 +00:00
};
}