about summary refs log tree commit diff
path: root/pkgs/desktops/pantheon/apps/switchboard-plugs/a11y/default.nix
diff options
context:
space:
mode:
authorBobby Rong <rjl931189261@126.com>2021-07-17 11:18:42 +0800
committerBobby Rong <rjl931189261@126.com>2021-09-18 19:33:32 +0800
commit2912d5927a0d0515adff0c74d76f00fc8b774e95 (patch)
tree0e56b4dc0e1c22947c04b7410c7774afe4de0585 /pkgs/desktops/pantheon/apps/switchboard-plugs/a11y/default.nix
parente79876b1f7f87830d7503ecb243e7c0b71652e39 (diff)
pantheon.switchboard-plug-a11y: 2.2.0 -> 2.3.0
Diffstat (limited to 'pkgs/desktops/pantheon/apps/switchboard-plugs/a11y/default.nix')
-rw-r--r--pkgs/desktops/pantheon/apps/switchboard-plugs/a11y/default.nix15
1 files changed, 12 insertions, 3 deletions
diff --git a/pkgs/desktops/pantheon/apps/switchboard-plugs/a11y/default.nix b/pkgs/desktops/pantheon/apps/switchboard-plugs/a11y/default.nix
index 06f097e81af52..5a0ab7a856d79 100644
--- a/pkgs/desktops/pantheon/apps/switchboard-plugs/a11y/default.nix
+++ b/pkgs/desktops/pantheon/apps/switchboard-plugs/a11y/default.nix
@@ -1,6 +1,7 @@
 { lib, stdenv
 , substituteAll
 , fetchFromGitHub
+, fetchpatch
 , nix-update-script
 , pantheon
 , meson
@@ -11,18 +12,19 @@
 , granite
 , gtk3
 , switchboard
+, wingpanel-indicator-a11y
 , onboard
 }:
 
 stdenv.mkDerivation rec {
   pname = "switchboard-plug-a11y";
-  version = "2.2.0";
+  version = "2.3.0";
 
   src = fetchFromGitHub {
     owner = "elementary";
     repo = pname;
     rev = version;
-    sha256 = "sha256-3PaOIadlEdYvfNZJaoAQVDKdSTfUdn+snCa8tHmDFD0=";
+    sha256 = "0dc5jv335j443rg08cb7p8wvmcg36wrf1vlcfg9r20cksdis9v4l";
   };
 
   patches = [
@@ -30,6 +32,12 @@ stdenv.mkDerivation rec {
       src = ./fix-paths.patch;
       inherit onboard;
     })
+    # Upstream code not respecting our localedir
+    # https://github.com/elementary/switchboard-plug-a11y/pull/79
+    (fetchpatch {
+      url = "https://github.com/elementary/switchboard-plug-a11y/commit/08db4b696128a6bf809da3403a818834fcd62b02.patch";
+      sha256 = "1s13ak23bdxgcb74wdz3ql192bla5qhabdicqyjv1rp32plhkbg5";
+    })
   ];
 
   passthru = {
@@ -50,12 +58,13 @@ stdenv.mkDerivation rec {
     gtk3
     libgee
     switchboard
+    wingpanel-indicator-a11y
   ];
 
   meta = with lib; {
     description = "Switchboard Universal Access Plug";
     homepage = "https://github.com/elementary/switchboard-plug-a11y";
-    license = licenses.lgpl3Plus;
+    license = licenses.gpl3Plus;
     platforms = platforms.linux;
     maintainers = pantheon.maintainers;
   };