unofficial mirror of guix-devel@gnu.org 
 help / color / mirror / code / Atom feed
[parent not found: <mailman.9097.1476199680.22739.guix-devel@gnu.org>]
[parent not found: <mailman.8862.1476111449.22739.guix-devel@gnu.org>]
[parent not found: <mailman.8756.1476089051.22739.guix-devel@gnu.org>]
* [PATCH 2/2] gnu: Add bluefish.
@ 2016-10-05  2:27 rennes
  2016-10-05  9:40 ` Hartmut Goebel
  0 siblings, 1 reply; 14+ messages in thread
From: rennes @ 2016-10-05  2:27 UTC (permalink / raw)
  To: guix-devel

[-- Attachment #1: Type: text/plain, Size: 76 bytes --]

This patch is bluefish, a HTML editor.

Built, linted and tested.

Thank you

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: 0001-gnu-Add-bluefish.patch --]
[-- Type: text/x-diff; name=0001-gnu-Add-bluefish.patch, Size: 2971 bytes --]

From b80dc8081d4e615a4d6ab21c34afb4fed77a49bf Mon Sep 17 00:00:00 2001
From: Rene Saavedra <rennes@openmailbox.org>
Date: Tue, 4 Oct 2016 21:17:04 -0500
Subject: [PATCH 2/2] gnu: Add bluefish.

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

---
 gnu/packages/bluefish.scm | 62 +++++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 62 insertions(+)
 create mode 100644 gnu/packages/bluefish.scm

diff --git a/gnu/packages/bluefish.scm b/gnu/packages/bluefish.scm
new file mode 100644
index 0000000..9217e59
--- /dev/null
+++ b/gnu/packages/bluefish.scm
@@ -0,0 +1,62 @@
+;;; GNU Guix --- Functional package management for GNU
+;;; Copyright © 2016 Rene Saavedra <rennes@openmailbox.org>
+;;;
+;;; This file is part of GNU Guix.
+;;;
+;;; GNU Guix is free software; you can redistribute it and/or modify it
+;;; under the terms of the GNU General Public License as published by
+;;; the Free Software Foundation; either version 3 of the License, or (at
+;;; your option) any later version.
+;;;
+;;; GNU Guix is distributed in the hope that it will be useful, but
+;;; WITHOUT ANY WARRANTY; without even the implied warranty of
+;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+;;; GNU General Public License for more details.
+;;;
+;;; You should have received a copy of the GNU General Public License
+;;; along with GNU Guix.  If not, see <http://www.gnu.org/licenses/>.
+
+(define-module (gnu packages bluefish)
+  #:use-module ((guix licenses) #:prefix license:)
+  #:use-module (guix build-system gnu)
+  #:use-module (guix download)
+  #:use-module (guix packages)
+  #:use-module (gnu packages enchant)
+  #:use-module (gnu packages glib)
+  #:use-module (gnu packages gnome)
+  #:use-module (gnu packages gtk)
+  #:use-module (gnu packages gucharmap)
+  #:use-module (gnu packages pkg-config)
+  #:use-module (gnu packages python)
+  #:use-module (gnu packages xml))
+
+(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 "HTML editor")
+    (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


^ permalink raw reply related	[flat|nested] 14+ messages in thread

end of thread, other threads:[~2016-10-21  1:39 UTC | newest]

Thread overview: 14+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
     [not found] <mailman.7342.1475666564.22739.guix-devel@gnu.org>
2016-10-05 23:13 ` [PATCH 2/2] gnu: Add bluefish rennes
2016-10-09 11:00   ` Hartmut Goebel
2016-10-09 14:05   ` Ricardo Wurmus
2016-10-09 20:25     ` rennes
2016-10-09 21:04       ` Ricardo Wurmus
2016-10-09 21:20         ` rennes
2016-10-10  7:36           ` Hartmut Goebel
     [not found] <mailman.9097.1476199680.22739.guix-devel@gnu.org>
2016-10-17 23:33 ` rennes
2016-10-21  1:39   ` rennes
     [not found] <mailman.8862.1476111449.22739.guix-devel@gnu.org>
2016-10-11 15:27 ` rennes
     [not found] <mailman.8756.1476089051.22739.guix-devel@gnu.org>
2016-10-10 13:42 ` rennes
2016-10-10 13:59   ` Hartmut Goebel
2016-10-05  2:27 rennes
2016-10-05  9:40 ` Hartmut Goebel

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/guix.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).