849ee4d900
GitOrigin-RevId: 9e377a6ce42dccd9b624ae4ce8f978dc892ba0e2
18 lines
429 B
Nix
18 lines
429 B
Nix
{ mkXfceDerivation, gobject-introspection, vala, gtk3, gtksourceview4, xfconf }:
|
|
|
|
mkXfceDerivation {
|
|
category = "apps";
|
|
pname = "mousepad";
|
|
version = "0.5.4";
|
|
odd-unstable = false;
|
|
|
|
sha256 = "0yrmjs6cyzm08jz8wzrx8wdxj7zdbxn6x625109ckfcfxrkp4a2f";
|
|
|
|
nativeBuildInputs = [ gobject-introspection vala ];
|
|
|
|
buildInputs = [ gtk3 gtksourceview4 xfconf ];
|
|
|
|
meta = {
|
|
description = "Simple text editor for Xfce";
|
|
};
|
|
}
|