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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

42 lines
817 B
Nix
Raw Normal View History

{ lib
, stdenv
, fetchurl
, wrapGAppsHook3
, pkg-config
, gtk
, libxml2
, enchant
, gucharmap
, python3
, gnome
}:
stdenv.mkDerivation rec {
pname = "bluefish";
2024-03-19 12:47:36 +00:00
version = "2.2.15";
src = fetchurl {
url = "mirror://sourceforge/bluefish/bluefish-${version}.tar.bz2";
2024-03-19 12:47:36 +00:00
sha256 = "sha256-YUPlHGtVedWW86moXg8NhYDJ9Y+ChXWxGYgODKHZQbw=";
};
nativeBuildInputs = [ pkg-config wrapGAppsHook3 ];
buildInputs = [
gnome.adwaita-icon-theme
gtk
libxml2
enchant
gucharmap
python3
];
2021-03-25 10:00:00 +00:00
meta = with lib; {
description = "Powerful editor targeted towards programmers and webdevelopers";
homepage = "https://bluefish.openoffice.nl/";
license = licenses.gpl3Plus;
maintainers = with maintainers; [ vbgl ];
platforms = platforms.all;
2023-11-27 01:17:53 +00:00
mainProgram = "bluefish";
};
}