summary refs log tree commit diff
path: root/pkgs/desktops
diff options
context:
space:
mode:
authorBobby Rong <rjl931189261@126.com>2023-05-15 14:13:32 +0800
committerBobby Rong <rjl931189261@126.com>2023-05-15 14:18:27 +0800
commitc240ad39d3a963be04d128111c3def7b15617103 (patch)
treefde8408d947cc1cc0b4b632d330ba00bdbbfa61a /pkgs/desktops
parent0470f36b02ef01d4f43c641bbf07020bcab71bf1 (diff)
downloadnixpkgs-c240ad39d3a963be04d128111c3def7b15617103.tar
nixpkgs-c240ad39d3a963be04d128111c3def7b15617103.tar.gz
nixpkgs-c240ad39d3a963be04d128111c3def7b15617103.tar.bz2
nixpkgs-c240ad39d3a963be04d128111c3def7b15617103.tar.lz
nixpkgs-c240ad39d3a963be04d128111c3def7b15617103.tar.xz
nixpkgs-c240ad39d3a963be04d128111c3def7b15617103.tar.zst
nixpkgs-c240ad39d3a963be04d128111c3def7b15617103.zip
xfce.mousepad: 0.6.0 -> 0.6.1
https://gitlab.xfce.org/apps/mousepad/-/compare/mousepad-0.6.0...mousepad-0.6.1
Diffstat (limited to 'pkgs/desktops')
-rw-r--r--pkgs/desktops/xfce/applications/mousepad/default.nix22
1 files changed, 18 insertions, 4 deletions
diff --git a/pkgs/desktops/xfce/applications/mousepad/default.nix b/pkgs/desktops/xfce/applications/mousepad/default.nix
index 6bc0079a670..d78a51660f6 100644
--- a/pkgs/desktops/xfce/applications/mousepad/default.nix
+++ b/pkgs/desktops/xfce/applications/mousepad/default.nix
@@ -1,16 +1,30 @@
-{ lib, mkXfceDerivation, gobject-introspection, gtk3, gtksourceview4, gspell }:
+{ lib
+, mkXfceDerivation
+, gobject-introspection
+, glib
+, gtk3
+, gtksourceview4
+, gspell
+, polkit
+}:
 
 mkXfceDerivation {
   category = "apps";
   pname = "mousepad";
-  version = "0.6.0";
+  version = "0.6.1";
   odd-unstable = false;
 
-  sha256 = "sha256-VmpCjR8/3rsCGkVGhT+IdC6kaQkGz8G2ktFhJk32DeQ=";
+  sha256 = "sha256-MLdexhIsQa4XuVaLgtQ2aVJ00+pwkhAP3qMj0XXPqh0=";
 
   nativeBuildInputs = [ gobject-introspection ];
 
-  buildInputs = [ gtk3 gtksourceview4 gspell ];
+  buildInputs = [
+    glib
+    gtk3
+    gtksourceview4
+    gspell
+    polkit # optional polkit support
+  ];
 
   # Use the GSettings keyfile backend rather than DConf
   configureFlags = [ "--enable-keyfile-settings" ];