forked from mirrors/nixpkgs
emacs-markdown-mode: add version 2.0-82-gfe30ef7
This commit is contained in:
parent
5d5a03f190
commit
7fb7fafe0f
|
@ -0,0 +1,28 @@
|
|||
{ stdenv, fetchFromGitHub, emacs }:
|
||||
|
||||
let
|
||||
version = "2.0-82-gfe30ef7";
|
||||
in
|
||||
stdenv.mkDerivation {
|
||||
name = "markdown-mode-${version}";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "defunkt";
|
||||
repo = "markdown-mode";
|
||||
rev = "v${version}";
|
||||
sha256 = "14a6r05j0g2ppq2q4kd14qyxwr6yv5jwndavbwzkmp6qhmm9k8nz";
|
||||
};
|
||||
|
||||
buildInputs = [ emacs ];
|
||||
|
||||
buildPhase = ''
|
||||
emacs -L . --batch -f batch-byte-compile *.el
|
||||
'';
|
||||
|
||||
installPhase = ''
|
||||
install -d $out/share/emacs/site-lisp
|
||||
install *.el *.elc $out/share/emacs/site-lisp
|
||||
'';
|
||||
|
||||
meta.license = stdenv.lib.license.gpl3Plus;
|
||||
}
|
|
@ -10453,7 +10453,7 @@ let
|
|||
coreclr = callPackage ../development/compilers/coreclr { };
|
||||
|
||||
corefonts = callPackage ../data/fonts/corefonts { };
|
||||
|
||||
|
||||
culmus = callPackage ../data/fonts/culmus { };
|
||||
|
||||
wrapFonts = paths : (callPackage ../data/fonts/fontWrap { inherit paths; });
|
||||
|
@ -11244,6 +11244,8 @@ let
|
|||
|
||||
magit = callPackage ../applications/editors/emacs-modes/magit { };
|
||||
|
||||
markdownMode = callPackage ../applications/editors/emacs-modes/markdown-mode { };
|
||||
|
||||
maudeMode = callPackage ../applications/editors/emacs-modes/maude { };
|
||||
|
||||
metaweblog = callPackage ../applications/editors/emacs-modes/metaweblog { };
|
||||
|
@ -12392,7 +12394,7 @@ let
|
|||
|
||||
pencil = callPackage ../applications/graphics/pencil { };
|
||||
|
||||
perseus = callPackage ../applications/science/math/perseus {};
|
||||
perseus = callPackage ../applications/science/math/perseus {};
|
||||
|
||||
petrifoo = callPackage ../applications/audio/petrifoo {
|
||||
inherit (gnome) libgnomecanvas;
|
||||
|
@ -15207,4 +15209,3 @@ tweakAlias = _n: alias: with lib;
|
|||
else alias;
|
||||
|
||||
in lib.mapAttrs tweakAlias aliases // self; in pkgs
|
||||
|
||||
|
|
Loading…
Reference in a new issue