94427deb9d
GitOrigin-RevId: f91ee3065de91a3531329a674a45ddcb3467a650
36 lines
685 B
Nix
36 lines
685 B
Nix
{ lib
|
|
, mkXfceDerivation
|
|
, gobject-introspection
|
|
, glib
|
|
, gtk3
|
|
, gtksourceview4
|
|
, gspell
|
|
, 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
|
|
polkit # optional polkit support
|
|
];
|
|
|
|
# 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;
|
|
};
|
|
}
|