about summary refs log tree commit diff
path: root/nixpkgs/pkgs/desktops/xfce/applications/mousepad/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/desktops/xfce/applications/mousepad/default.nix')
-rw-r--r--nixpkgs/pkgs/desktops/xfce/applications/mousepad/default.nix38
1 files changed, 38 insertions, 0 deletions
diff --git a/nixpkgs/pkgs/desktops/xfce/applications/mousepad/default.nix b/nixpkgs/pkgs/desktops/xfce/applications/mousepad/default.nix
new file mode 100644
index 000000000000..47c84b036eeb
--- /dev/null
+++ b/nixpkgs/pkgs/desktops/xfce/applications/mousepad/default.nix
@@ -0,0 +1,38 @@
+{ lib
+, mkXfceDerivation
+, gobject-introspection
+, glib
+, gtk3
+, gtksourceview4
+, gspell
+, enablePolkit ? true
+, polkit
+}:
+
+mkXfceDerivation {
+  category = "apps";
+  pname = "mousepad";
+  version = "0.6.1";
+  odd-unstable = false;
+
+  sha256 = "sha256-MLdexhIsQa4XuVaLgtQ2aVJ00+pwkhAP3qMj0XXPqh0=";
+
+  nativeBuildInputs = [ gobject-introspection ];
+
+  buildInputs = [
+    glib
+    gtk3
+    gtksourceview4
+    gspell
+  ] ++ lib.optionals enablePolkit [
+    polkit
+  ];
+
+  # Use the GSettings keyfile backend rather than DConf
+  configureFlags = [ "--enable-keyfile-settings" ];
+
+  meta = with lib; {
+    description = "Simple text editor for Xfce";
+    maintainers = with maintainers; [ ] ++ teams.xfce.members;
+  };
+}