3
0
Fork 0
forked from mirrors/nixpkgs

add smex emacs package

This commit is contained in:
Jan Malakhovski 2014-01-21 00:11:57 +00:00
parent 59ebcccc59
commit 8dd923a2e4

View file

@ -710,6 +710,22 @@ let self = _self // overrides;
meta = { licence = gpl3Plus; };
};
smex = melpaBuild rec {
pname = "smex";
version = "20141210";
src = fetchFromGitHub {
owner = "nonsequitur";
repo = pname;
rev = "aff8d4485139ac28f1c7e62912c0d0d480995831";
sha256 = "0017f1ji7rxad2n49dhn5g0pmw6lmw80cqk6dynszizj46xpbqfp";
};
meta = {
description = "M-x enhancement for Emacs build on top of Ido";
homepage = https://github.com/nonsequitur/smex/;
license = emacs.meta.license; # should be "same as Emacs"
};
};
structured-haskell-mode = melpaBuild rec {
pname = "shm";
version = external.structured-haskell-mode.version;