2023-05-24 13:37:59 +00:00
|
|
|
{ lib
|
|
|
|
, mkXfceDerivation
|
|
|
|
, gobject-introspection
|
|
|
|
, glib
|
|
|
|
, gtk3
|
|
|
|
, gtksourceview4
|
|
|
|
, gspell
|
2023-08-04 22:07:22 +00:00
|
|
|
, enablePolkit ? true
|
2023-05-24 13:37:59 +00:00
|
|
|
, polkit
|
|
|
|
}:
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
mkXfceDerivation {
|
|
|
|
category = "apps";
|
|
|
|
pname = "mousepad";
|
2023-05-24 13:37:59 +00:00
|
|
|
version = "0.6.1";
|
2020-12-29 15:07:52 +00:00
|
|
|
odd-unstable = false;
|
2020-04-24 23:36:52 +00:00
|
|
|
|
2023-05-24 13:37:59 +00:00
|
|
|
sha256 = "sha256-MLdexhIsQa4XuVaLgtQ2aVJ00+pwkhAP3qMj0XXPqh0=";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
2021-05-20 23:08:51 +00:00
|
|
|
nativeBuildInputs = [ gobject-introspection ];
|
2020-04-24 23:36:52 +00:00
|
|
|
|
2023-05-24 13:37:59 +00:00
|
|
|
buildInputs = [
|
|
|
|
glib
|
|
|
|
gtk3
|
|
|
|
gtksourceview4
|
|
|
|
gspell
|
2023-08-04 22:07:22 +00:00
|
|
|
] ++ lib.optionals enablePolkit [
|
|
|
|
polkit
|
2023-05-24 13:37:59 +00:00
|
|
|
];
|
2021-05-20 23:08:51 +00:00
|
|
|
|
|
|
|
# Use the GSettings keyfile backend rather than DConf
|
|
|
|
configureFlags = [ "--enable-keyfile-settings" ];
|
2020-04-24 23:36:52 +00:00
|
|
|
|
2021-12-19 01:06:50 +00:00
|
|
|
meta = with lib; {
|
2021-04-05 15:23:46 +00:00
|
|
|
description = "Simple text editor for Xfce";
|
2021-12-19 01:06:50 +00:00
|
|
|
maintainers = with maintainers; [ ] ++ teams.xfce.members;
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
}
|