lol

cinnamon.muffin: 5.6.2 -> 5.6.3

https://github.com/linuxmint/muffin/compare/5.6.2...5.6.3

+2 -10
+2 -10
pkgs/desktops/cinnamon/muffin/default.nix
··· 1 1 { stdenv 2 2 , lib 3 3 , fetchFromGitHub 4 - , fetchpatch 5 4 , substituteAll 6 5 , cairo 7 6 , cinnamon-desktop ··· 36 35 37 36 stdenv.mkDerivation rec { 38 37 pname = "muffin"; 39 - version = "5.6.2"; 38 + version = "5.6.3"; 40 39 41 40 outputs = [ "out" "dev" "man" ]; 42 41 ··· 44 43 owner = "linuxmint"; 45 44 repo = pname; 46 45 rev = version; 47 - hash = "sha256-bHEBzl0aBXsHOhSWJUz428pG5M6L0s/Q6acKO+2oMXo="; 46 + hash = "sha256-qcm1CRUMKFx4KDXBnaIVLHuZTzSMEWEBFTWMe85pJDE="; 48 47 }; 49 48 50 49 patches = [ 51 50 (substituteAll { 52 51 src = ./fix-paths.patch; 53 52 zenity = gnome.zenity; 54 - }) 55 - 56 - # compositor: Fix crash when restarting Cinnamon 57 - # https://github.com/linuxmint/muffin/pull/655 58 - (fetchpatch { 59 - url = "https://github.com/linuxmint/muffin/commit/1a941ec603a1565dbd2f943f7da6e877d1541bcb.patch"; 60 - sha256 = "sha256-6x64rWQ20ZjM9z79Pg6QMDPeFN5VNdDHBueRvy2kA6c="; 61 53 }) 62 54 ]; 63 55