emacsPackages: add cryptol-mode
Signed-off-by: Austin Seipp <aseipp@pobox.com>
This commit is contained in:
parent
1b113178ee
commit
6376ac57d8
|
@ -0,0 +1,27 @@
|
|||
{ stdenv, fetchgit, emacs }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "cryptol-mode-${version}";
|
||||
version = "20141010";
|
||||
|
||||
src = fetchgit {
|
||||
url = "https://github.com/thoughtpolice/cryptol-mode.git";
|
||||
rev = "50075d49d7c4ec4b03ce31b634424410262c1ad4";
|
||||
sha256 = "6ecd4904b7f3b1cd0721591ce45f16fe11cd1dd5fd7af8110d1f84b133ed4aec";
|
||||
};
|
||||
|
||||
buildInputs = [ emacs ];
|
||||
|
||||
installPhase = ''
|
||||
install -d $out/share/emacs/site-lisp
|
||||
install *.el *.elc $out/share/emacs/site-lisp
|
||||
'';
|
||||
|
||||
meta = {
|
||||
description = "Emacs major mode for Cryptol";
|
||||
homepage = "https://thoughtpolice/cryptol-mode";
|
||||
license = stdenv.lib.licenses.gpl3Plus;
|
||||
platforms = stdenv.lib.platforms.all;
|
||||
maintainers = [ stdenv.lib.maintainers.thoughtpolice ];
|
||||
};
|
||||
}
|
|
@ -7934,6 +7934,8 @@ let
|
|||
|
||||
colorTheme = callPackage ../applications/editors/emacs-modes/color-theme { };
|
||||
|
||||
cryptol = callPackage ../applications/editors/emacs-modes/cryptol { };
|
||||
|
||||
cua = callPackage ../applications/editors/emacs-modes/cua { };
|
||||
|
||||
darcsum = callPackage ../applications/editors/emacs-modes/darcsum { };
|
||||
|
|
Loading…
Reference in New Issue