about summary refs log tree commit diff
path: root/nixpkgs/pkgs/desktops/cinnamon/muffin/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/desktops/cinnamon/muffin/default.nix')
-rw-r--r--nixpkgs/pkgs/desktops/cinnamon/muffin/default.nix105
1 files changed, 105 insertions, 0 deletions
diff --git a/nixpkgs/pkgs/desktops/cinnamon/muffin/default.nix b/nixpkgs/pkgs/desktops/cinnamon/muffin/default.nix
new file mode 100644
index 000000000000..c2ad10f97ac0
--- /dev/null
+++ b/nixpkgs/pkgs/desktops/cinnamon/muffin/default.nix
@@ -0,0 +1,105 @@
+{ 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;
+  };
+}