biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / applications / editors / bluefish / default.nix
blobafcc62a289994e5a9696c21608aca35dabac9977
1 { lib
2 , stdenv
3 , fetchurl
4 , wrapGAppsHook
5 , pkg-config
6 , gtk
7 , libxml2
8 , enchant
9 , gucharmap
10 , python3
11 , gnome
14 stdenv.mkDerivation rec {
15   pname = "bluefish";
16   version = "2.2.15";
18   src = fetchurl {
19     url = "mirror://sourceforge/bluefish/bluefish-${version}.tar.bz2";
20     sha256 = "sha256-YUPlHGtVedWW86moXg8NhYDJ9Y+ChXWxGYgODKHZQbw=";
21   };
23   nativeBuildInputs = [ pkg-config wrapGAppsHook ];
24   buildInputs = [
25     gnome.adwaita-icon-theme
26     gtk
27     libxml2
28     enchant
29     gucharmap
30     python3
31   ];
33   meta = with lib; {
34     description = "A powerful editor targeted towards programmers and webdevelopers";
35     homepage = "https://bluefish.openoffice.nl/";
36     license = licenses.gpl3Plus;
37     maintainers = with maintainers; [ vbgl ];
38     platforms = platforms.all;
39     mainProgram = "bluefish";
40   };