maude-mode: new package

svn path=/nixpkgs/trunk/; revision=12361
This commit is contained in:
Peter Simons 2008-07-15 14:53:07 +00:00
parent 8d7fe32a0e
commit b1cdb57a77
2 changed files with 17 additions and 0 deletions

View file

@ -0,0 +1,13 @@
{stdenv, fetchurl, emacs}:
stdenv.mkDerivation
{
name = "maude-mode-0.1";
src = fetchurl
{
url = "mirror://sourceforge/maude-mode/maude-mode.tar.gz";
sha256 = "12555j01mar48da2jy3ay93xfn7ybl23bpvhp0srzg8858gisx5g";
};
buildInputs = [emacs];
configureFlags = "--with-lispdir=$$out/share/emacs/site-lisp";
}

View file

@ -6160,6 +6160,10 @@ let pkgs = rec {
qt = qt4;
};
maudeMode = import ../applications/editors/emacs-modes/maude {
inherit fetchurl stdenv emacs;
};
maxima = import ../applications/misc/maxima {
inherit fetchurl stdenv clisp;
};