summary refs log tree commit diff
path: root/pkgs/applications/editors/emacs-modes/maude/default.nix
blob: 70693d039c588e1559f951fa01fca2cedcb9b0ec (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{stdenv, fetchurl, emacs}:

stdenv.mkDerivation {
  name = "maude-mode-0.2";

  src = fetchurl {
    url = "mirror://sourceforge/maude-mode/maude-mode-0.2.tar.gz";
    sha256 = "19jdd7la0bxxxnnq4ryckf63jykg0r3v92z126x6djaigi3xn1yx";
  };

  buildInputs = [emacs];
  configureFlags = "--with-lispdir=$$out/share/emacs/site-lisp";

  meta = {
    description = "Emacs mode for the programming language Maude";
    license = stdenv.lib.licenses.gpl2;
    platforms = stdenv.lib.platforms.all;
    maintainers = [ stdenv.lib.maintainers.peti ];
  };
}