python312Packages.gcp-storage-emulator: clean up (#376058)
[NixPkgs.git] / pkgs / applications / editors / bluefish / default.nix
blob04f5a97a51ae425cc46cbcce78aecd5d2b4c0cf2
2   lib,
3   stdenv,
4   fetchurl,
5   wrapGAppsHook3,
6   pkg-config,
7   gtk,
8   libxml2,
9   enchant,
10   gucharmap,
11   python3,
12   adwaita-icon-theme,
15 stdenv.mkDerivation rec {
16   pname = "bluefish";
17   version = "2.2.16";
19   src = fetchurl {
20     url = "mirror://sourceforge/bluefish/bluefish-${version}.tar.bz2";
21     sha256 = "sha256-FOZHb87o+jJvf2Px9pPSUhlfncsWrw/jyRXEmbr13XQ=";
22   };
24   nativeBuildInputs = [
25     pkg-config
26     wrapGAppsHook3
27   ];
28   buildInputs = [
29     adwaita-icon-theme
30     gtk
31     libxml2
32     enchant
33     gucharmap
34     python3
35   ];
37   meta = with lib; {
38     description = "Powerful editor targeted towards programmers and webdevelopers";
39     homepage = "https://bluefish.openoffice.nl/";
40     license = licenses.gpl3Plus;
41     maintainers = with maintainers; [ vbgl ];
42     platforms = platforms.all;
43     mainProgram = "bluefish";
44   };