Added SciTE 3.3.7.
This commit is contained in:
parent
15006a1788
commit
1d50967424
3 changed files with 38 additions and 0 deletions
|
@ -54,6 +54,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>";
|
||||
|
|
35
pkgs/applications/editors/scite/default.nix
Normal file
35
pkgs/applications/editors/scite/default.nix
Normal 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;
|
||||
};
|
||||
}
|
|
@ -8621,6 +8621,8 @@ let
|
|||
|
||||
sbagen = callPackage ../applications/misc/sbagen { };
|
||||
|
||||
scite = callPackage ../applications/editors/scite { };
|
||||
|
||||
scribus = callPackage ../applications/office/scribus {
|
||||
inherit (gnome) libart_lgpl;
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue