a0cb138ada
GitOrigin-RevId: a100acd7bbf105915b0004427802286c37738fef
32 lines
831 B
Nix
32 lines
831 B
Nix
{ stdenv, fetchFromGitHub, lib
|
|
, pkg-config, cmake
|
|
, gtk3
|
|
, ayatana-ido
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "libayatana-indicator";
|
|
version = "0.9.3";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "AyatanaIndicators";
|
|
repo = "libayatana-indicator";
|
|
rev = version;
|
|
sha256 = "sha256-tOZcrcuZowqDg/LRYTY6PCxKnpEd67k4xAHrIKupunI=";
|
|
};
|
|
|
|
nativeBuildInputs = [ pkg-config cmake ];
|
|
|
|
buildInputs = [ gtk3 ];
|
|
|
|
propagatedBuildInputs = [ ayatana-ido ];
|
|
|
|
meta = with lib; {
|
|
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;
|
|
maintainers = [ maintainers.nickhu ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|