Files
nixpkgs/pkgs/desktops/xfce/applications/mousepad/default.nix
T
José Romildo Malaquias 515ce02e52 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
2021-05-14 10:16:27 -03:00

22 lines
527 B
Nix

{ mkXfceDerivation, gobject-introspection, gtk3, gtksourceview4, gspell }:
mkXfceDerivation {
category = "apps";
pname = "mousepad";
version = "0.5.5";
odd-unstable = false;
sha256 = "1c985xb3395bn1024qhqqdnlkbn02zldsnybxsw49xqh55pa4a2n";
nativeBuildInputs = [ gobject-introspection ];
buildInputs = [ gtk3 gtksourceview4 gspell ];
# Use the GSettings keyfile backend rather than DConf
configureFlags = [ "--enable-keyfile-settings" ];
meta = {
description = "Simple text editor for Xfce";
};
}