{ stdenv , lib , fetchFromGitHub , substituteAll , cairo , cinnamon-desktop , dbus , desktop-file-utils , glib , gnome , gobject-introspection , graphene , gtk3 , json-glib , libcanberra , libdrm , libgnomekbd , libgudev , libinput , libstartup_notification , libwacom , libXdamage , libxkbcommon , libXtst , mesa , meson , ninja , pipewire , pkg-config , python3 , udev , wrapGAppsHook , xorgserver }: stdenv.mkDerivation rec { pname = "muffin"; version = "5.8.1"; outputs = [ "out" "dev" "man" ]; src = fetchFromGitHub { owner = "linuxmint"; repo = pname; rev = version; hash = "sha256-9YE+pHXJb21CcAflL9swNyhQY3ZCkLlZbnmUwTNdyfA="; }; patches = [ (substituteAll { src = ./fix-paths.patch; zenity = gnome.zenity; }) ]; nativeBuildInputs = [ desktop-file-utils mesa # needed for gbm meson ninja pkg-config python3 wrapGAppsHook xorgserver # for cvt command gobject-introspection ]; buildInputs = [ cairo cinnamon-desktop dbus glib gtk3 libcanberra libdrm libgnomekbd libgudev libinput libstartup_notification libwacom libXdamage libxkbcommon pipewire udev ]; propagatedBuildInputs = [ # required for pkg-config to detect muffin-clutter json-glib libXtst graphene ]; postPatch = '' patchShebangs src/backends/native/gen-default-modes.py ''; meta = with lib; { homepage = "https://github.com/linuxmint/muffin"; description = "The window management library for the Cinnamon desktop (libmuffin) and its sample WM binary (muffin)"; license = licenses.gpl2Plus; platforms = platforms.linux; maintainers = teams.cinnamon.members; }; }