pantheon.elementary-default-settings: fix gtk-theme-name and gtk-font-name
This commit is contained in:
parent
7dd57213b3
commit
1c64941016
1 changed files with 17 additions and 6 deletions
|
@ -1,5 +1,7 @@
|
||||||
{ lib, stdenv
|
{ lib
|
||||||
|
, stdenv
|
||||||
, fetchFromGitHub
|
, fetchFromGitHub
|
||||||
|
, fetchpatch
|
||||||
, nix-update-script
|
, nix-update-script
|
||||||
, pantheon
|
, pantheon
|
||||||
, meson
|
, meson
|
||||||
|
@ -26,11 +28,14 @@ stdenv.mkDerivation rec {
|
||||||
sha256 = "0gqnrm968j4v699yhhiyw5fqjy4zbvvrjci2v1jrlycn09c2yrwf";
|
sha256 = "0gqnrm968j4v699yhhiyw5fqjy4zbvvrjci2v1jrlycn09c2yrwf";
|
||||||
};
|
};
|
||||||
|
|
||||||
passthru = {
|
patches = [
|
||||||
updateScript = nix-update-script {
|
# Update gtk-theme-name and gtk-font-name for Pantheon 6
|
||||||
attrPath = "pantheon.${pname}";
|
# https://github.com/elementary/default-settings/pull/252
|
||||||
};
|
(fetchpatch {
|
||||||
};
|
url = "https://github.com/elementary/default-settings/commit/be24c151492bb9115c75bd1a7abc88714240294a.patch";
|
||||||
|
sha256 = "sha256-EglFiN4CLbL8osfNGLvjD220Al35uBXuRNC9Ud3QYBI=";
|
||||||
|
})
|
||||||
|
];
|
||||||
|
|
||||||
nativeBuildInputs = [
|
nativeBuildInputs = [
|
||||||
accountsservice
|
accountsservice
|
||||||
|
@ -80,6 +85,12 @@ stdenv.mkDerivation rec {
|
||||||
rm -rf $out/share/applications
|
rm -rf $out/share/applications
|
||||||
'';
|
'';
|
||||||
|
|
||||||
|
passthru = {
|
||||||
|
updateScript = nix-update-script {
|
||||||
|
attrPath = "pantheon.${pname}";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "Default settings and configuration files for elementary";
|
description = "Default settings and configuration files for elementary";
|
||||||
homepage = "https://github.com/elementary/default-settings";
|
homepage = "https://github.com/elementary/default-settings";
|
||||||
|
|
Loading…
Reference in a new issue