Merge pull request #1570 from rszibele/scite

Added SciTE 3.3.7.
This commit is contained in:
cillianderoiste 2014-02-12 01:39:40 +01:00
commit c75ce202e6
3 changed files with 38 additions and 0 deletions

View file

@ -56,6 +56,7 @@
rob = "Rob Vermaas <rob.vermaas@gmail.com>";
roconnor = "Russell O'Connor <roconnor@theorem.ca>";
roelof = "Roelof Wobben <rwobben@hotmail.com>";
rszibele = "Richard Szibele <richard_szibele@hotmail.com>";
sander = "Sander van der Burg <s.vanderburg@tudelft.nl>";
shlevy = "Shea Levy <shea@shealevy.com>";
simons = "Peter Simons <simons@cryp.to>";

View file

@ -0,0 +1,35 @@
{ stdenv, fetchurl, pkgconfig, gtk }:
let
version = "3.3.7";
version_short = stdenv.lib.replaceChars [ "." ] [ "" ] "${version}";
in stdenv.mkDerivation {
name = "scite-${version}";
src = fetchurl {
url = "mirror://sourceforge/project/scintilla/SciTE/${version}/scite${version_short}.tgz";
sha256 = "0x7i6yxq50frsjkrp3lc5zy0d1ssq2n91igjn0dmqajpg7kls2dd";
};
buildInputs = [ pkgconfig gtk ];
sourceRoot = "scintilla/gtk";
buildPhase = ''
make
cd ../../scite/gtk
make prefix=$out/
'';
installPhase = ''
make install prefix=$out/
'';
meta = {
homepage = "http://www.scintilla.org/SciTE.html";
description = "SCIntilla based Text Editor";
license = stdenv.lib.licenses.mit;
platforms = stdenv.lib.platforms.linux;
maintainers = stdenv.lib.maintainers.rszibele;
};
}

View file

@ -8728,6 +8728,8 @@ let
sbagen = callPackage ../applications/misc/sbagen { };
scite = callPackage ../applications/editors/scite { };
scribus = callPackage ../applications/office/scribus {
inherit (gnome) libart_lgpl;
};