Luke Granger-Brown
57725ef3ec
git-subtree-dir: third_party/nixpkgs git-subtree-split: 76612b17c0ce71689921ca12d9ffdc9c23ce40b2
43 lines
850 B
Nix
43 lines
850 B
Nix
{
|
|
cmake,
|
|
fetchFromGitHub,
|
|
glib,
|
|
gtk3,
|
|
lib,
|
|
pkg-config,
|
|
stdenv,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "ayatana-ido";
|
|
version = "0.10.4";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "AyatanaIndicators";
|
|
repo = pname;
|
|
rev = version;
|
|
sha256 = "sha256-KeErrT2umMaIVfLDr4CcQCmFrMb8/h6pNYbunuC/JtI=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
cmake
|
|
glib # for glib-mkenums
|
|
pkg-config
|
|
];
|
|
|
|
buildInputs = [ gtk3 ];
|
|
|
|
strictDeps = true;
|
|
|
|
meta = with lib; {
|
|
description = "Ayatana Display Indicator Objects";
|
|
homepage = "https://github.com/AyatanaIndicators/ayatana-ido";
|
|
changelog = "https://github.com/AyatanaIndicators/ayatana-ido/blob/${version}/ChangeLog";
|
|
license = [
|
|
licenses.lgpl3Plus
|
|
licenses.lgpl21Plus
|
|
];
|
|
maintainers = [ maintainers.nickhu ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|