nixpkgs/pkgs/applications/editors/scite/default.nix

34 lines
733 B
Nix
Raw Normal View History

{ stdenv, fetchurl, pkgconfig, gtk2 }:
2014-01-23 09:35:02 +00:00
stdenv.mkDerivation rec {
2014-01-23 09:35:02 +00:00
name = "scite-${version}";
2017-07-12 20:11:36 +00:00
version = "3.7.5";
2014-01-23 09:35:02 +00:00
src = fetchurl {
2017-07-12 20:11:36 +00:00
url = http://www.scintilla.org/scite375.tgz;
sha256 = "11pg9bifyyqpblqsrl1b9f8shb3fa6fgzclvjba6hwh7hh98drji";
2014-01-23 09:35:02 +00:00
};
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ gtk2 ];
2014-01-23 09:35:02 +00:00
sourceRoot = "scintilla/gtk";
buildPhase = ''
make
cd ../../scite/gtk
make prefix=$out/
'';
installPhase = ''
make install prefix=$out/
'';
meta = with stdenv.lib; {
homepage = http://www.scintilla.org/SciTE.html;
2014-01-23 09:35:02 +00:00
description = "SCIntilla based Text Editor";
license = licenses.mit;
platforms = platforms.linux;
maintainers = [ maintainers.rszibele ];
2014-01-23 09:35:02 +00:00
};
}