depot/third_party/nixpkgs/pkgs/applications/editors/bluefish/default.nix
Default email f34ce41345 Project import generated by Copybara.
GitOrigin-RevId: b73c2221a46c13557b1b3be9c2070cc42cf01eb3
2024-07-27 08:49:29 +02:00

41 lines
824 B
Nix

{ lib
, stdenv
, fetchurl
, wrapGAppsHook3
, pkg-config
, gtk
, libxml2
, enchant
, gucharmap
, python3
, adwaita-icon-theme
}:
stdenv.mkDerivation rec {
pname = "bluefish";
version = "2.2.15";
src = fetchurl {
url = "mirror://sourceforge/bluefish/bluefish-${version}.tar.bz2";
sha256 = "sha256-YUPlHGtVedWW86moXg8NhYDJ9Y+ChXWxGYgODKHZQbw=";
};
nativeBuildInputs = [ pkg-config wrapGAppsHook3 ];
buildInputs = [
adwaita-icon-theme
gtk
libxml2
enchant
gucharmap
python3
];
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;
mainProgram = "bluefish";
};
}