From f1a573b2dcf5ad509089b9e5ec4c1aff4a15473c Mon Sep 17 00:00:00 2001 From: Rene Saavedra 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