summary refs log tree commit diff
path: root/pkgs/desktops
diff options
context:
space:
mode:
authorJosé Romildo Malaquias <malaquias@gmail.com>2021-05-14 10:15:51 -0300
committerJosé Romildo Malaquias <malaquias@gmail.com>2021-05-14 10:16:27 -0300
commit515ce02e52e647902f5e03fd9ef7e4dd1d9ac653 (patch)
treeafd35afef16d06d8e535d1e193e9dc9f97d6cc21 /pkgs/desktops
parentb08e223a048022dcbaaeb82943f7c4e8e870397d (diff)
xfce.mousepad: 0.5.4 -> 0.5.5
- Update to version 0.5.5
- Remove unused dependences: vala, xfconf
- Add new dependence: gspell (for the new gspell plugin)
- Use the GSettings keyfile backend
Diffstat (limited to 'pkgs/desktops')
-rw-r--r--pkgs/desktops/xfce/applications/mousepad/default.nix13
1 files changed, 8 insertions, 5 deletions
diff --git a/pkgs/desktops/xfce/applications/mousepad/default.nix b/pkgs/desktops/xfce/applications/mousepad/default.nix
index 22fdd00cb2f03..33666c53bb802 100644
--- a/pkgs/desktops/xfce/applications/mousepad/default.nix
+++ b/pkgs/desktops/xfce/applications/mousepad/default.nix
@@ -1,16 +1,19 @@
-{ mkXfceDerivation, gobject-introspection, vala, gtk3, gtksourceview4, xfconf }:
+{ mkXfceDerivation, gobject-introspection, gtk3, gtksourceview4, gspell }:
 
 mkXfceDerivation {
   category = "apps";
   pname = "mousepad";
-  version = "0.5.4";
+  version = "0.5.5";
   odd-unstable = false;
 
-  sha256 = "0yrmjs6cyzm08jz8wzrx8wdxj7zdbxn6x625109ckfcfxrkp4a2f";
+  sha256 = "1c985xb3395bn1024qhqqdnlkbn02zldsnybxsw49xqh55pa4a2n";
 
-  nativeBuildInputs = [ gobject-introspection vala ];
+  nativeBuildInputs = [ gobject-introspection ];
 
-  buildInputs = [ gtk3 gtksourceview4 xfconf ];
+  buildInputs = [ gtk3 gtksourceview4 gspell ];
+
+  # Use the GSettings keyfile backend rather than DConf
+  configureFlags = [ "--enable-keyfile-settings" ];
 
   meta = {
     description = "Simple text editor for Xfce";