bluefish: moderinize

This commit is contained in:
awwpotato 2025-04-19 19:58:41 -07:00
parent b399074162
commit 7b88749351
No known key found for this signature in database
2 changed files with 11 additions and 13 deletions

View File

@ -4,7 +4,7 @@
fetchurl,
wrapGAppsHook3,
pkg-config,
gtk,
gtk3,
libxml2,
enchant,
gucharmap,
@ -12,13 +12,13 @@
adwaita-icon-theme,
}:
stdenv.mkDerivation rec {
stdenv.mkDerivation (finalAttrs: {
pname = "bluefish";
version = "2.2.17";
src = fetchurl {
url = "mirror://sourceforge/bluefish/bluefish-${version}.tar.bz2";
sha256 = "sha256-Onn2Ql4Uk56hNPlsFCTjqsBb7pWQS+Q0WBiDB4p7clM=";
url = "mirror://sourceforge/bluefish/bluefish-${finalAttrs.version}.tar.bz2";
hash = "sha256-Onn2Ql4Uk56hNPlsFCTjqsBb7pWQS+Q0WBiDB4p7clM=";
};
nativeBuildInputs = [
@ -27,19 +27,19 @@ stdenv.mkDerivation rec {
];
buildInputs = [
adwaita-icon-theme
gtk
gtk3
libxml2
enchant
gucharmap
python3
];
meta = with lib; {
meta = {
description = "Powerful editor targeted towards programmers and webdevelopers";
homepage = "https://bluefish.openoffice.nl/";
license = licenses.gpl3Plus;
maintainers = with maintainers; [ vbgl ];
platforms = platforms.all;
license = lib.licenses.gpl3Plus;
maintainers = with lib.maintainers; [ vbgl ];
platforms = lib.platforms.all;
mainProgram = "bluefish";
};
}
})

View File

@ -13816,9 +13816,7 @@ with pkgs;
inherit (haskellPackages) ghcWithPackages;
};
bluefish = callPackage ../applications/editors/bluefish {
gtk = gtk3;
};
bluefish = callPackage ../applications/editors/bluefish { };
breezy = with python3Packages; toPythonApplication breezy;