nixpkgs/pkgs/applications/editors/bluefish/default.nix

25 lines
740 B
Nix
Raw Normal View History

{ lib, stdenv, fetchurl, intltool, wrapGAppsHook, pkg-config , gtk, libxml2
, enchant, gucharmap, python, gnome3
}:
stdenv.mkDerivation rec {
2020-11-17 05:01:29 +00:00
name = "bluefish-2.2.12";
src = fetchurl {
url = "mirror://sourceforge/bluefish/${name}.tar.bz2";
2020-11-17 05:01:29 +00:00
sha256 = "0slyjx4b4l612505q02crk00pjg9d5wi8gm5gxvcs0f6l9dr1y8d";
};
nativeBuildInputs = [ intltool pkg-config wrapGAppsHook ];
2019-02-13 21:47:50 +00:00
buildInputs = [ gnome3.adwaita-icon-theme gtk libxml2
2015-02-07 15:31:09 +00:00
enchant gucharmap python ];
meta = with lib; {
description = "A powerful editor targeted towards programmers and webdevelopers";
homepage = "http://bluefish.openoffice.nl/";
license = licenses.gpl3Plus;
maintainers = [maintainers.vbgl];
platforms = platforms.all;
};
}