about summary refs log tree commit diff
path: root/pkgs/desktops/pantheon
diff options
context:
space:
mode:
authorworldofpeace <worldofpeace@protonmail.ch>2019-07-17 11:03:09 -0400
committerGitHub <noreply@github.com>2019-07-17 11:03:09 -0400
commit24c731be5d10b9af1c735d41858c9acd73bf6cfa (patch)
tree9aec81174b8139d7c5d975c5ece4fc7abf458b7d /pkgs/desktops/pantheon
parent3795b4d96a9a4ccf637c0487937d9620a63f35ee (diff)
parent47dcdfe3a18f5ed50968a70e0811920057a07266 (diff)
downloadnixlib-24c731be5d10b9af1c735d41858c9acd73bf6cfa.tar
nixlib-24c731be5d10b9af1c735d41858c9acd73bf6cfa.tar.gz
nixlib-24c731be5d10b9af1c735d41858c9acd73bf6cfa.tar.bz2
nixlib-24c731be5d10b9af1c735d41858c9acd73bf6cfa.tar.lz
nixlib-24c731be5d10b9af1c735d41858c9acd73bf6cfa.tar.xz
nixlib-24c731be5d10b9af1c735d41858c9acd73bf6cfa.tar.zst
nixlib-24c731be5d10b9af1c735d41858c9acd73bf6cfa.zip
Merge pull request #64273 from worldofpeace/switchboard-plug-pantheon-shell/fix-lightdm
pantheon.switchboard-plug-pantheon-shell: Fix setting lightdm background
Diffstat (limited to 'pkgs/desktops/pantheon')
-rw-r--r--pkgs/desktops/pantheon/apps/switchboard-plugs/pantheon-shell/default.nix7
1 files changed, 6 insertions, 1 deletions
diff --git a/pkgs/desktops/pantheon/apps/switchboard-plugs/pantheon-shell/default.nix b/pkgs/desktops/pantheon/apps/switchboard-plugs/pantheon-shell/default.nix
index 4d6a1f5c5c67..57ae3215f5f3 100644
--- a/pkgs/desktops/pantheon/apps/switchboard-plugs/pantheon-shell/default.nix
+++ b/pkgs/desktops/pantheon/apps/switchboard-plugs/pantheon-shell/default.nix
@@ -1,6 +1,6 @@
 { stdenv, fetchFromGitHub, pantheon, meson, ninja, pkgconfig, vala
 , libgee, granite, gexiv2, elementary-settings-daemon, gtk3, gnome-desktop
-, gala, wingpanel, plank, switchboard, gettext, bamf }:
+, gala, wingpanel, plank, switchboard, gettext, bamf, fetchpatch }:
 
 stdenv.mkDerivation rec {
   pname = "switchboard-plug-pantheon-shell";
@@ -42,6 +42,11 @@ stdenv.mkDerivation rec {
   patches = [
     ./backgrounds.patch # Having https://github.com/elementary/switchboard-plug-pantheon-shell/issues/166 would make this patch uneeded
     ./hardcode-gsettings.patch
+    # Fixes https://github.com/elementary/switchboard-plug-pantheon-shell/issues/172
+    (fetchpatch {
+      url = "https://github.com/elementary/switchboard-plug-pantheon-shell/commit/e4f86df6a6be402db4c979a4b005573618b744d1.patch";
+      sha256 = "0sa8611k6sqg96mnp2plmxd30w6zq76bfwszl8ankr9kwsgyc66y";
+    })
   ];
 
   postPatch = ''