504525a148
GitOrigin-RevId: bd645e8668ec6612439a9ee7e71f7eac4099d4f6
41 lines
817 B
Nix
41 lines
817 B
Nix
{ lib
|
|
, stdenv
|
|
, fetchurl
|
|
, wrapGAppsHook
|
|
, pkg-config
|
|
, gtk
|
|
, libxml2
|
|
, enchant
|
|
, gucharmap
|
|
, python3
|
|
, gnome
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "bluefish";
|
|
version = "2.2.14";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/bluefish/bluefish-${version}.tar.bz2";
|
|
sha256 = "sha256-IszfnOTlyWIQY+bPfXOr+wc2q3pyvOCG0Gxc9e4SXt4=";
|
|
};
|
|
|
|
nativeBuildInputs = [ pkg-config wrapGAppsHook ];
|
|
buildInputs = [
|
|
gnome.adwaita-icon-theme
|
|
gtk
|
|
libxml2
|
|
enchant
|
|
gucharmap
|
|
python3
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "A powerful editor targeted towards programmers and webdevelopers";
|
|
homepage = "https://bluefish.openoffice.nl/";
|
|
license = licenses.gpl3Plus;
|
|
maintainers = with maintainers; [ vbgl ];
|
|
platforms = platforms.all;
|
|
mainProgram = "bluefish";
|
|
};
|
|
}
|