summary refs log tree commit diff
path: root/pkgs/desktops/xfce/applications/mousepad
diff options
context:
space:
mode:
authorworldofpeace <worldofpeace@protonmail.ch>2019-11-04 16:27:22 -0500
committerworldofpeace <worldofpeace@protonmail.ch>2019-11-19 18:47:02 -0500
commitac70cd728cab343e446ede905e0dbd94fd78ca77 (patch)
tree855c6f1e2711cf8fedb1e6bd5edf187cdf057796 /pkgs/desktops/xfce/applications/mousepad
parent041d35a08afc1de270e31ae951fc5141e69cb52a (diff)
downloadnixpkgs-ac70cd728cab343e446ede905e0dbd94fd78ca77.tar
nixpkgs-ac70cd728cab343e446ede905e0dbd94fd78ca77.tar.gz
nixpkgs-ac70cd728cab343e446ede905e0dbd94fd78ca77.tar.bz2
nixpkgs-ac70cd728cab343e446ede905e0dbd94fd78ca77.tar.lz
nixpkgs-ac70cd728cab343e446ede905e0dbd94fd78ca77.tar.xz
nixpkgs-ac70cd728cab343e446ede905e0dbd94fd78ca77.tar.zst
nixpkgs-ac70cd728cab343e446ede905e0dbd94fd78ca77.zip
xfce4-14: move to xfce and have only one version of xfce
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.
Diffstat (limited to 'pkgs/desktops/xfce/applications/mousepad')
-rw-r--r--pkgs/desktops/xfce/applications/mousepad/default.nix19
1 files changed, 19 insertions, 0 deletions
diff --git a/pkgs/desktops/xfce/applications/mousepad/default.nix b/pkgs/desktops/xfce/applications/mousepad/default.nix
new file mode 100644
index 00000000000..6f841958c79
--- /dev/null
+++ b/pkgs/desktops/xfce/applications/mousepad/default.nix
@@ -0,0 +1,19 @@
+{ 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";
+  };
+}