forked from mirrors/nixpkgs
Adds bluefish
Bluefish is a powerful editor targeted towards programmers and webdevelopers, with many options to write websites, scripts and programming code. Homepage: http://bluefish.openoffice.nl/
This commit is contained in:
parent
9b2cff2fc7
commit
7361406e20
23
pkgs/applications/editors/bluefish/default.nix
Normal file
23
pkgs/applications/editors/bluefish/default.nix
Normal file
|
@ -0,0 +1,23 @@
|
|||
{stdenv, fetchurl, intltool, pkgconfig , gtk, libxml2
|
||||
, enchant, gucharmap, python
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "bluefish-2.2.6";
|
||||
|
||||
src = fetchurl {
|
||||
url = "mirror://sourceforge/bluefish/${name}.tar.bz2";
|
||||
sha256 = "05j2mv6s2llf2pxknddhk8fzbghr7yff58xhkxy2icky64n8khjl";
|
||||
};
|
||||
|
||||
buildInputs = [intltool pkgconfig gtk libxml2
|
||||
enchant gucharmap python];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "A powerful editor targeted towards programmers and webdevelopers";
|
||||
homepage = http://bluefish.openoffice.nl/;
|
||||
license = licenses.gpl3Plus;
|
||||
maintainer = [maintainers.vbgl];
|
||||
platforms = platforms.all;
|
||||
};
|
||||
}
|
|
@ -9085,6 +9085,10 @@ let
|
|||
python = python34;
|
||||
};
|
||||
|
||||
bluefish = callPackage ../applications/editors/bluefish {
|
||||
gtk = gtk3;
|
||||
};
|
||||
|
||||
bristol = callPackage ../applications/audio/bristol { };
|
||||
|
||||
bspwm = callPackage ../applications/window-managers/bspwm { };
|
||||
|
|
Loading…
Reference in a new issue