forked from mirrors/nixpkgs
ac70cd728c
All code that was at xfce4-14 has been moved to xfce/*. Old expressions that aren't rewritten might be abandoned or broken. Additonally I've ported the xfce4-14 thunar expression to support thunarPlugins. We can now support this interface in the Xfce module again, although I'm not sure if we have any plugins packaged that support latest thunar.
20 lines
486 B
Nix
20 lines
486 B
Nix
{ mkXfceDerivation, exo, glib, gtk3, gtksourceview3, xfconf }:
|
|
|
|
mkXfceDerivation {
|
|
category = "apps";
|
|
pname = "mousepad";
|
|
version = "0.4.2";
|
|
|
|
sha256 = "0a35vaq4l0d8vzw7hqpvbgkr3wj1sqr2zvj7bc5z4ikz2cppqj7p";
|
|
|
|
nativeBuildInputs = [ exo ];
|
|
buildInputs = [ glib gtk3 gtksourceview3 xfconf ];
|
|
|
|
# See https://github.com/NixOS/nixpkgs/issues/36468
|
|
NIX_CFLAGS_COMPILE = "-I${glib.dev}/include/gio-unix-2.0";
|
|
|
|
meta = {
|
|
description = "A simple text editor for Xfce";
|
|
};
|
|
}
|