* stratego-mode for emacs

svn path=/nixpkgs/trunk/; revision=16910
This commit is contained in:
Rob Vermaas 2009-09-01 14:27:24 +00:00
parent 0dc8e1418e
commit f016a6bcbc
3 changed files with 18 additions and 0 deletions

View file

@ -0,0 +1,4 @@
source $stdenv/setup
mkdir -p $out/share/emacs/site-lisp
cp $src $out/share/emacs/site-lisp/stratego.el

View file

@ -0,0 +1,10 @@
{stdenv, fetchsvn}:
stdenv.mkDerivation {
name = "stratego-mode";
builder = ./builder.sh;
src = fetchsvn {
url = https://svn.strategoxt.org/repos/StrategoXT/stratego-editors/trunk/emacs/stratego.el;
rev = 12678;
sha256 = "4ab4ec587550233f29ca08b82fa0a9f7e5b33fc178348037e3ab1816bd60f538";
};
}

View file

@ -6342,6 +6342,10 @@ let
inherit fetchsvn stdenv cedet ant emacs;
};
stratego = import ../applications/editors/emacs-modes/stratego {
inherit fetchsvn stdenv;
};
haskellMode = import ../applications/editors/emacs-modes/haskell {
inherit fetchurl stdenv emacs;
};