1 { stdenv, fetchFromGitHub, lib
7 stdenv.mkDerivation rec {
8 pname = "libayatana-indicator";
11 src = fetchFromGitHub {
12 owner = "AyatanaIndicators";
13 repo = "libayatana-indicator";
15 sha256 = "sha256-OsguZ+jl274uPSCTFHq/ZwUE3yHR7MlUPHCpfmn1F7A=";
18 nativeBuildInputs = [ pkg-config cmake ];
20 buildInputs = [ gtk3 ];
22 propagatedBuildInputs = [ ayatana-ido ];
25 description = "Ayatana Indicators Shared Library";
26 homepage = "https://github.com/AyatanaIndicators/libayatana-indicator";
27 changelog = "https://github.com/AyatanaIndicators/libayatana-indicator/blob/${version}/ChangeLog";
28 license = licenses.gpl3Plus;
29 maintainers = [ maintainers.nickhu ];
30 platforms = platforms.linux;