lol

Merge pull request #228248 from bobby285271/upd/pantheon

pantheon.elementary-gtk-theme: 7.1.0 -> 7.2.0

authored by

Bobby Rong and committed by
GitHub
e6d63990 4f7b5eff

+12 -2
+12 -2
pkgs/desktops/pantheon/artwork/elementary-gtk-theme/default.nix
··· 1 1 { lib 2 2 , stdenvNoCC 3 3 , fetchFromGitHub 4 + , fetchpatch 4 5 , nix-update-script 5 6 , gettext 6 7 , meson ··· 11 12 12 13 stdenvNoCC.mkDerivation rec { 13 14 pname = "elementary-gtk-theme"; 14 - version = "7.1.0"; 15 + version = "7.2.0"; 15 16 16 17 src = fetchFromGitHub { 17 18 owner = "elementary"; 18 19 repo = "stylesheet"; 19 20 rev = version; 20 - sha256 = "sha256-AFiREZ4pDIwQ4OeZDIHEJUNSeUsMjAlDd5h0pB0ilNw="; 21 + sha256 = "sha256-ZR0FJ8DkPlO1Zatvxv3NghAVBPo2j+1m0k4C+gvYPVA="; 21 22 }; 23 + 24 + patches = [ 25 + # Headerbars: fix missing default-decoration 26 + # https://github.com/elementary/stylesheet/pull/1258 27 + (fetchpatch { 28 + url = "https://github.com/elementary/stylesheet/commit/9cea2383bec8f90d25f1e9b854b5221737487521.patch"; 29 + sha256 = "sha256-6komROS4+nxwoGoKoiDmnrTfLNZAvnTU6hIEOQQfmxc="; 30 + }) 31 + ]; 22 32 23 33 nativeBuildInputs = [ 24 34 gettext