about summary refs log tree commit diff
path: root/pkgs/desktops/mate/pluma/default.nix
diff options
context:
space:
mode:
authorromildo <malaquias@gmail.com>2017-08-06 12:40:13 -0300
committerromildo <malaquias@gmail.com>2017-08-06 12:40:13 -0300
commitc6207abe9cc2f984402d31244c34bcaeef97c366 (patch)
treed0ec4c62c774edc84872b8469307f88e88ea2c94 /pkgs/desktops/mate/pluma/default.nix
parent4b0afc169d836f4d6c133853617c04a98a91f5a6 (diff)
downloadnixlib-c6207abe9cc2f984402d31244c34bcaeef97c366.tar
nixlib-c6207abe9cc2f984402d31244c34bcaeef97c366.tar.gz
nixlib-c6207abe9cc2f984402d31244c34bcaeef97c366.tar.bz2
nixlib-c6207abe9cc2f984402d31244c34bcaeef97c366.tar.lz
nixlib-c6207abe9cc2f984402d31244c34bcaeef97c366.tar.xz
nixlib-c6207abe9cc2f984402d31244c34bcaeef97c366.tar.zst
nixlib-c6207abe9cc2f984402d31244c34bcaeef97c366.zip
pluma: init at 1.18.2
Diffstat (limited to 'pkgs/desktops/mate/pluma/default.nix')
-rw-r--r--pkgs/desktops/mate/pluma/default.nix38
1 files changed, 38 insertions, 0 deletions
diff --git a/pkgs/desktops/mate/pluma/default.nix b/pkgs/desktops/mate/pluma/default.nix
new file mode 100644
index 000000000000..29df4fc475a7
--- /dev/null
+++ b/pkgs/desktops/mate/pluma/default.nix
@@ -0,0 +1,38 @@
+{ stdenv, fetchurl, pkgconfig, intltool, itstool, isocodes, enchant, libxml2, python, gnome3, mate, wrapGAppsHook }:
+
+stdenv.mkDerivation rec {
+  name = "pluma-${version}";
+  version = "${major-ver}.${minor-ver}";
+  major-ver = "1.18";
+  minor-ver = "2";
+
+  src = fetchurl {
+    url = "http://pub.mate-desktop.org/releases/${major-ver}/${name}.tar.xz";
+    sha256 = "1z0938yiygxipj2a77n9dv8v4253snrc5gbbnarcnim9xba2j3zz";
+  };
+
+  nativeBuildInputs = [
+    pkgconfig
+    intltool
+    itstool
+    isocodes
+    wrapGAppsHook
+  ];
+
+  buildInputs = [
+    enchant
+    libxml2
+    python
+    gnome3.gtksourceview
+    gnome3.libpeas
+    mate.mate-desktop
+  ];
+
+  meta = {
+    description = "Powerful text editor for the MATE desktop";
+    homepage = http://mate-desktop.org;
+    license = stdenv.lib.licenses.gpl2;
+    platforms = stdenv.lib.platforms.unix;
+    maintainers = [ stdenv.lib.maintainers.romildo ];
+  };
+}