bba55970ba
GitOrigin-RevId: 3d1a7716d7f1fccbd7d30ab3b2ed3db831f43bde
20 lines
508 B
Nix
20 lines
508 B
Nix
{ mkXfceDerivation, gobject-introspection, vala, gtk3, gtksourceview3, xfconf }:
|
|
|
|
mkXfceDerivation {
|
|
category = "apps";
|
|
pname = "mousepad";
|
|
version = "0.5.3";
|
|
odd-unstable = false;
|
|
|
|
sha256 = "0ki5k5p24dpawkyq4k8am1fcq02njhnmhq5vf2ah1zqbc0iyl5yn";
|
|
|
|
nativeBuildInputs = [ gobject-introspection vala ];
|
|
|
|
buildInputs = [ gtk3 gtksourceview3 xfconf ];
|
|
|
|
patches = [ ./allow-checking-parent-sources-when-looking-up-schema.patch ];
|
|
|
|
meta = {
|
|
description = "Simple text editor for Xfce";
|
|
};
|
|
}
|