Updated patch.

Same here: This shout go into gnu/packages/gnome.scm. We do not add a
file for every single application.

+    (synopsis "HTML editor")

Could you pleae be  a bit more verbose here. Deban says "advanced Gtk+
text editor for web and software development" Other distributions call
this "Web development studio" (I don't know if this is right, though).
From f1a573b2dcf5ad509089b9e5ec4c1aff4a15473c Mon Sep 17 00:00:00 2001
From: Rene Saavedra <ren...@openmailbox.org>
Date: Wed, 5 Oct 2016 18:13:38 -0500
Subject: [PATCH 2/2] gnu: Add bluefish.

	* gnu/packages/gnome.scm (bluefish): New variable.

---
 gnu/packages/gnome.scm | 31 +++++++++++++++++++++++++++++++
 1 file changed, 31 insertions(+)

diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm
index 0bc66a9..d29bed1 100644
--- a/gnu/packages/gnome.scm
+++ b/gnu/packages/gnome.scm
@@ -5573,3 +5573,34 @@ is suitable as a default application in a Desktop environment.")
     (description
      "Character map, based on the Unicode Character Database.")
     (license license:gpl3)))
+
+(define-public bluefish
+  (package
+    (name "bluefish")
+    (version "2.2.8")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (string-append "mirror://sourceforge/bluefish/bluefish/"
+                           version "/bluefish-" version ".tar.bz2"))
+       (sha256
+        (base32
+         "002hfj125j7372zdq8cb8fadyyd6ws42avm8ngjl6gzfbjaqymrj"))))
+    (build-system gnu-build-system)
+    (native-inputs
+     `(("desktop-file-utils" ,desktop-file-utils)
+       ("intltool" ,intltool)
+       ("pkg-config" ,pkg-config)))
+    (inputs
+     `(("enchant" ,enchant)
+       ("gtk+" ,gtk+)
+       ("python" ,python-2)
+       ("xmllint" ,libxml2)
+       ("gucharmap" ,gucharmap)))
+    (home-page "http://bluefish.openoffice.nl";)
+    (synopsis "Web development studio")
+    (description
+     "Bluefish is a editor targeted towards programmers and webdevelopers,
+with many options to write websites, scripts and programming code.
+Bluefish supports many programming and markup languages.")
+    (license license:gpl3)))
-- 
2.10.0

Reply via email to