nixpkgs/pkgs/by-name/li/libayatana-indicator/package.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

44 lines
911 B
Nix
Raw Normal View History

{
ayatana-ido,
cmake,
fetchFromGitHub,
glib,
gtk3,
lib,
pkg-config,
stdenv,
2020-05-24 15:25:38 +00:00
}:
stdenv.mkDerivation rec {
pname = "libayatana-indicator";
2023-10-14 11:04:02 +00:00
version = "0.9.4";
2020-05-24 15:25:38 +00:00
src = fetchFromGitHub {
owner = "AyatanaIndicators";
repo = "libayatana-indicator";
rev = version;
2023-10-14 11:04:02 +00:00
sha256 = "sha256-OsguZ+jl274uPSCTFHq/ZwUE3yHR7MlUPHCpfmn1F7A=";
2020-05-24 15:25:38 +00:00
};
nativeBuildInputs = [
cmake
glib # for glib-mkenums
pkg-config
];
2020-05-24 15:25:38 +00:00
buildInputs = [ gtk3 ];
2020-05-24 15:25:38 +00:00
propagatedBuildInputs = [ ayatana-ido ];
2020-05-24 15:25:38 +00:00
strictDeps = true;
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
};
}