2021-01-19 06:50:56 +00:00
|
|
|
{ lib, stdenv, fetchurl, intltool, wrapGAppsHook, pkg-config , gtk, libxml2
|
2021-05-07 22:18:14 +01:00
|
|
|
, enchant, gucharmap, python3, gnome
|
2014-11-13 19:49:44 +00:00
|
|
|
}:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2020-11-17 05:01:29 +00:00
|
|
|
name = "bluefish-2.2.12";
|
2014-11-13 19:49:44 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://sourceforge/bluefish/${name}.tar.bz2";
|
2020-11-17 05:01:29 +00:00
|
|
|
sha256 = "0slyjx4b4l612505q02crk00pjg9d5wi8gm5gxvcs0f6l9dr1y8d";
|
2014-11-13 19:49:44 +00:00
|
|
|
};
|
|
|
|
|
2021-01-19 06:50:56 +00:00
|
|
|
nativeBuildInputs = [ intltool pkg-config wrapGAppsHook ];
|
2021-05-07 22:18:14 +01:00
|
|
|
buildInputs = [ gnome.adwaita-icon-theme gtk libxml2
|
2021-03-25 10:00:00 +00:00
|
|
|
enchant gucharmap python3 ];
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2014-11-13 19:49:44 +00:00
|
|
|
description = "A powerful editor targeted towards programmers and webdevelopers";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "http://bluefish.openoffice.nl/";
|
2014-11-13 19:49:44 +00:00
|
|
|
license = licenses.gpl3Plus;
|
2014-12-20 20:53:19 +00:00
|
|
|
maintainers = [maintainers.vbgl];
|
2014-11-13 19:49:44 +00:00
|
|
|
platforms = platforms.all;
|
|
|
|
};
|
|
|
|
}
|