Files
nixpkgs/pkgs/by-name/bl/bluefish/package.nix
Dark Steveneq 646b892680
Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
push sheeet
2025-10-09 14:15:47 +02:00

49 lines
1.0 KiB
Nix

{
lib,
stdenv,
fetchurl,
wrapGAppsHook3,
pkg-config,
gtk3,
libxml2,
enchant,
gucharmap,
python3,
adwaita-icon-theme,
}:
stdenv.mkDerivation (finalAttrs: {
pname = "bluefish";
version = "2.2.17";
src = fetchurl {
url = "mirror://sourceforge/bluefish/bluefish-${finalAttrs.version}.tar.bz2";
hash = "sha256-Onn2Ql4Uk56hNPlsFCTjqsBb7pWQS+Q0WBiDB4p7clM=";
};
nativeBuildInputs = [
pkg-config
wrapGAppsHook3
];
buildInputs = [
adwaita-icon-theme
gtk3
libxml2
enchant
gucharmap
python3
];
# infb_gui.c:143:61: error: implicit declaration of function 'xmlNanoHTTPFetch' [-Wimplicit-function-declaration]
env.NIX_CFLAGS_COMPILE = "-Wno-error=implicit-function-declaration";
meta = {
description = "Powerful editor targeted towards programmers and webdevelopers";
homepage = "https://bluefish.openoffice.nl/";
license = lib.licenses.gpl3Plus;
maintainers = with lib.maintainers; [ vbgl ];
platforms = lib.platforms.all;
mainProgram = "bluefish";
};
})