3e2acf8aff
GitOrigin-RevId: d42cd445dde587e9a993cd9434cb43da07c4c5de
21 lines
527 B
Nix
21 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";
|
|
};
|
|
}
|