emacs-evil: 20141020 -> 1.2.3

Use the actual upstream source, not some random mirror.
This commit is contained in:
Thomas Tuegel 2015-08-21 10:00:22 -05:00
parent e40579d91e
commit 04124c45a7
2 changed files with 11 additions and 11 deletions

View File

@ -11296,7 +11296,7 @@ let
emacsPackagesNgGen = emacs: import ./emacs-packages.nix {
overrides = (config.emacsPackageOverrides or (p: {})) pkgs;
inherit lib stdenv fetchurl fetchgit fetchFromGitHub emacs;
inherit lib stdenv fetchurl fetchgit fetchFromGitHub fetchhg emacs;
trivialBuild = import ../build-support/emacs/trivial.nix {
inherit lib stdenv emacs texinfo;

View File

@ -33,7 +33,7 @@
{ overrides
, lib, stdenv, fetchurl, fetchgit, fetchFromGitHub
, lib, stdenv, fetchurl, fetchgit, fetchFromGitHub, fetchhg
, emacs
, trivialBuild
@ -498,11 +498,11 @@ let self = _self // overrides;
evil = melpaBuild {
pname = "evil";
version = "20141020";
src = fetchgit {
url = "https://github.com/emacsmirror/evil.git";
rev = "999ec15587f85100311c031aa8efb5d50c35afe4";
sha256 = "5f67643d19a31172e68f2f195959d33bcd26c2786eb71e67eb27eb52f5bf387a";
version = "1.2.3";
src = fetchhg {
url = "https://bitbucket.org/lyro/evil";
rev = "e5588e50c0e40a66c099868ea825755e348311fb";
sha256 = "0185vrzfdz6iwhmc22rjy0n7ppfppp2ddc8xl0vvbda79q6w3bp8";
};
packageRequires = [ goto-chg undo-tree ];
meta = {
@ -740,10 +740,10 @@ let self = _self // overrides;
goto-chg = melpaBuild rec {
pname = "goto-chg";
version = "1.6";
src = fetchgit {
url = "https://gitorious.org/evil/evil.git";
rev = "999ec15587f85100311c031aa8efb5d50c35afe4";
sha256 = "5f67643d19a31172e68f2f195959d33bcd26c2786eb71e67eb27eb52f5bf387a";
src = fetchhg {
url = "https://bitbucket.org/lyro/evil";
rev = "e5588e50c0e40a66c099868ea825755e348311fb";
sha256 = "0185vrzfdz6iwhmc22rjy0n7ppfppp2ddc8xl0vvbda79q6w3bp8";
};
files = [ "lib/goto-chg.el" ];
meta = { license = gpl3Plus; };