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

25 lines
738 B
Nix
Raw Normal View History

{ stdenv, fetchurl, intltool, wrapGAppsHook, pkgconfig , gtk, libxml2
, enchant, gucharmap, python, gnome3
}:
stdenv.mkDerivation rec {
2017-03-13 22:01:35 +00:00
name = "bluefish-2.2.10";
src = fetchurl {
url = "mirror://sourceforge/bluefish/${name}.tar.bz2";
2017-03-13 22:01:35 +00:00
sha256 = "1ciygj79q6i3ga5x1j8aivc05nh6rhhnm7hrq8q8xd9vd4ms3v5g";
};
nativeBuildInputs = [ intltool pkgconfig 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 stdenv.lib; {
description = "A powerful editor targeted towards programmers and webdevelopers";
homepage = http://bluefish.openoffice.nl/;
license = licenses.gpl3Plus;
maintainers = [maintainers.vbgl];
platforms = platforms.all;
};
}