2021-02-05 17:12:51 +00:00
|
|
|
{ lib, stdenv, fetchurl, intltool, wrapGAppsHook, pkg-config , gtk, libxml2
|
2021-03-20 04:20:00 +00:00
|
|
|
, enchant, gucharmap, python3, gnome3
|
2020-04-24 23:36:52 +00:00
|
|
|
}:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2020-11-19 00:13:47 +00:00
|
|
|
name = "bluefish-2.2.12";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://sourceforge/bluefish/${name}.tar.bz2";
|
2020-11-19 00:13:47 +00:00
|
|
|
sha256 = "0slyjx4b4l612505q02crk00pjg9d5wi8gm5gxvcs0f6l9dr1y8d";
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
|
2021-02-05 17:12:51 +00:00
|
|
|
nativeBuildInputs = [ intltool pkg-config wrapGAppsHook ];
|
2020-04-24 23:36:52 +00:00
|
|
|
buildInputs = [ gnome3.adwaita-icon-theme gtk libxml2
|
2021-03-20 04:20:00 +00:00
|
|
|
enchant gucharmap python3 ];
|
2020-04-24 23:36:52 +00:00
|
|
|
|
2021-01-15 22:18:51 +00:00
|
|
|
meta = with lib; {
|
2020-04-24 23:36:52 +00:00
|
|
|
description = "A powerful editor targeted towards programmers and webdevelopers";
|
|
|
|
homepage = "http://bluefish.openoffice.nl/";
|
|
|
|
license = licenses.gpl3Plus;
|
|
|
|
maintainers = [maintainers.vbgl];
|
|
|
|
platforms = platforms.all;
|
|
|
|
};
|
|
|
|
}
|