nixpkgs/pkgs/applications/editors/emacs-modes/maude/default.nix
2018-08-03 17:06:03 -04:00

21 lines
552 B
Nix

{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 ];
};
}