mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-29 10:23:29 +00:00
42 lines
824 B
Nix
42 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";
|
|
};
|
|
}
|