pantheon.granite: 5.3.1 -> 5.4.0

https://github.com/elementary/granite/releases/tag/5.4.0
This commit is contained in:
worldofpeace 2020-05-03 11:46:29 -04:00
parent 7bd2c2ae3a
commit 5c7019dbbd

View File

@ -10,19 +10,22 @@
, gtk3 , gtk3
, glib , glib
, gettext , gettext
, gsettings-desktop-schemas
, gobject-introspection , gobject-introspection
, wrapGAppsHook , wrapGAppsHook
}: }:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
pname = "granite"; pname = "granite";
version = "5.3.1"; version = "5.4.0";
outputs = [ "out" "dev" ];
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "elementary"; owner = "elementary";
repo = pname; repo = pname;
rev = version; rev = version;
sha256 = "12f1n07cjlc7czf642ak6964wl4fsgakc39nnmiba22z5aahfpz9"; sha256 = "0acicv3f9gksb352v88lwap8ailjsxdrfknl2xql7blasbjzl2q0";
}; };
passthru = { passthru = {
@ -48,6 +51,10 @@ stdenv.mkDerivation rec {
libgee libgee
]; ];
propagatedBuildInputs = [
gsettings-desktop-schemas # is_clock_format_12h uses "org.gnome.desktop.interface clock-format"
];
postPatch = '' postPatch = ''
chmod +x meson/post_install.py chmod +x meson/post_install.py
patchShebangs meson/post_install.py patchShebangs meson/post_install.py