legends-of-equestria: init at 2024.05.01 (#296316)
[NixPkgs.git] / pkgs / by-name / ay / ayatana-ido / package.nix
blob85023786ddebab242c75408fccf04c5a3c465050
2   cmake,
3   fetchFromGitHub,
4   glib,
5   gtk3,
6   lib,
7   pkg-config,
8   stdenv,
9 }:
11 stdenv.mkDerivation rec {
12   pname = "ayatana-ido";
13   version = "0.10.4";
15   src = fetchFromGitHub {
16     owner = "AyatanaIndicators";
17     repo = pname;
18     rev = version;
19     sha256 = "sha256-KeErrT2umMaIVfLDr4CcQCmFrMb8/h6pNYbunuC/JtI=";
20   };
22   nativeBuildInputs = [
23     cmake
24     glib # for glib-mkenums
25     pkg-config
26   ];
28   buildInputs = [ gtk3 ];
30   strictDeps = true;
32   meta = with lib; {
33     description = "Ayatana Display Indicator Objects";
34     homepage = "https://github.com/AyatanaIndicators/ayatana-ido";
35     changelog = "https://github.com/AyatanaIndicators/ayatana-ido/blob/${version}/ChangeLog";
36     license = [
37       licenses.lgpl3Plus
38       licenses.lgpl21Plus
39     ];
40     maintainers = [ maintainers.nickhu ];
41     platforms = platforms.linux;
42   };