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