mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-31 09:14:28 +00:00
* stratego-mode for emacs
svn path=/nixpkgs/trunk/; revision=16910
This commit is contained in:
parent
0dc8e1418e
commit
f016a6bcbc
@ -0,0 +1,4 @@
|
||||
source $stdenv/setup
|
||||
|
||||
mkdir -p $out/share/emacs/site-lisp
|
||||
cp $src $out/share/emacs/site-lisp/stratego.el
|
10
pkgs/applications/editors/emacs-modes/stratego/default.nix
Normal file
10
pkgs/applications/editors/emacs-modes/stratego/default.nix
Normal 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";
|
||||
};
|
||||
}
|
@ -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;
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user