mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-19 04:02:10 +00:00
pantheon.wingpanel-indicator-a11y: init at 1.0.0
This commit is contained in:
parent
c752b39bcd
commit
840cd6ca9f
|
@ -16,11 +16,12 @@ lib.makeScope pkgs.newScope (self: with self; {
|
||||||
];
|
];
|
||||||
|
|
||||||
wingpanelIndicators = [
|
wingpanelIndicators = [
|
||||||
wingpanel-applications-menu wingpanel-indicator-bluetooth
|
wingpanel-applications-menu wingpanel-indicator-a11y
|
||||||
wingpanel-indicator-datetime wingpanel-indicator-keyboard
|
wingpanel-indicator-bluetooth wingpanel-indicator-datetime
|
||||||
wingpanel-indicator-network wingpanel-indicator-nightlight
|
wingpanel-indicator-keyboard wingpanel-indicator-network
|
||||||
wingpanel-indicator-notifications wingpanel-indicator-power
|
wingpanel-indicator-nightlight wingpanel-indicator-notifications
|
||||||
wingpanel-indicator-session wingpanel-indicator-sound
|
wingpanel-indicator-power wingpanel-indicator-session
|
||||||
|
wingpanel-indicator-sound
|
||||||
];
|
];
|
||||||
|
|
||||||
maintainers = lib.teams.pantheon.members;
|
maintainers = lib.teams.pantheon.members;
|
||||||
|
@ -122,6 +123,8 @@ lib.makeScope pkgs.newScope (self: with self; {
|
||||||
|
|
||||||
wingpanel-applications-menu = callPackage ./desktop/wingpanel-indicators/applications-menu { };
|
wingpanel-applications-menu = callPackage ./desktop/wingpanel-indicators/applications-menu { };
|
||||||
|
|
||||||
|
wingpanel-indicator-a11y = callPackage ./desktop/wingpanel-indicators/a11y { };
|
||||||
|
|
||||||
wingpanel-indicator-bluetooth = callPackage ./desktop/wingpanel-indicators/bluetooth { };
|
wingpanel-indicator-bluetooth = callPackage ./desktop/wingpanel-indicators/bluetooth { };
|
||||||
|
|
||||||
wingpanel-indicator-datetime = callPackage ./desktop/wingpanel-indicators/datetime { };
|
wingpanel-indicator-datetime = callPackage ./desktop/wingpanel-indicators/datetime { };
|
||||||
|
|
|
@ -0,0 +1,70 @@
|
||||||
|
{ lib, stdenv
|
||||||
|
, fetchFromGitHub
|
||||||
|
, fetchpatch
|
||||||
|
, nix-update-script
|
||||||
|
, pantheon
|
||||||
|
, meson
|
||||||
|
, ninja
|
||||||
|
, pkg-config
|
||||||
|
, python3
|
||||||
|
, vala
|
||||||
|
, granite
|
||||||
|
, gtk3
|
||||||
|
, libgee
|
||||||
|
, wingpanel
|
||||||
|
}:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
pname = "wingpanel-indicator-a11y";
|
||||||
|
version = "1.0.0";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "elementary";
|
||||||
|
repo = pname;
|
||||||
|
rev = version;
|
||||||
|
sha256 = "1adx1sx9qh02hjgv5h0gwyn116shjl3paxmyaiv4cgh6vq3ndp3c";
|
||||||
|
};
|
||||||
|
|
||||||
|
patches = [
|
||||||
|
# Upstream code not respecting our localedir
|
||||||
|
# https://github.com/elementary/wingpanel-indicator-a11y/pull/48
|
||||||
|
(fetchpatch {
|
||||||
|
url = "https://github.com/elementary/wingpanel-indicator-a11y/commit/fb8412d56bc1c42b70e8ee41b837e8024e1297f7.patch";
|
||||||
|
sha256 = "0619npdw9wvaz1zk2lzikczyjdqba8v8c9ry9zizvvl4j1i1ad7k";
|
||||||
|
})
|
||||||
|
];
|
||||||
|
|
||||||
|
passthru = {
|
||||||
|
updateScript = nix-update-script {
|
||||||
|
attrPath = "pantheon.${pname}";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
nativeBuildInputs = [
|
||||||
|
meson
|
||||||
|
ninja
|
||||||
|
pkg-config
|
||||||
|
python3
|
||||||
|
vala
|
||||||
|
];
|
||||||
|
|
||||||
|
buildInputs = [
|
||||||
|
granite
|
||||||
|
gtk3
|
||||||
|
libgee
|
||||||
|
wingpanel
|
||||||
|
];
|
||||||
|
|
||||||
|
postPatch = ''
|
||||||
|
chmod +x meson/post_install.py
|
||||||
|
patchShebangs meson/post_install.py
|
||||||
|
'';
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "Universal Access Indicator for Wingpanel";
|
||||||
|
homepage = "https://github.com/elementary/wingpanel-indicator-a11y";
|
||||||
|
license = licenses.gpl2Plus;
|
||||||
|
platforms = platforms.linux;
|
||||||
|
maintainers = pantheon.maintainers;
|
||||||
|
};
|
||||||
|
}
|
Loading…
Reference in a new issue