depot/pkgs/applications/editors/bluefish/default.nix
Luke Granger-Brown 57725ef3ec Squashed 'third_party/nixpkgs/' content from commit 76612b17c0ce
git-subtree-dir: third_party/nixpkgs
git-subtree-split: 76612b17c0ce71689921ca12d9ffdc9c23ce40b2
2024-11-10 23:59:47 +00: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.16";
src = fetchurl {
url = "mirror://sourceforge/bluefish/bluefish-${version}.tar.bz2";
sha256 = "sha256-FOZHb87o+jJvf2Px9pPSUhlfncsWrw/jyRXEmbr13XQ=";
};
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";
};
}