emacs-modes: add upstream tramp

this fixes http://emacs.stackexchange.com/questions/21026/tramp-recreates-dev-null-as-a-regular-file
This commit is contained in:
Herwig Hochleitner 2016-09-14 21:32:29 +02:00
parent 5ea6d5fa72
commit a4cbd69ef0
2 changed files with 18 additions and 0 deletions

View File

@ -0,0 +1,16 @@
{ stdenv, fetchurl, emacs, texinfo }:
stdenv.mkDerivation rec {
name = "tramp-2.3.0";
src = fetchurl {
url = "mirror://gnu/tramp/${name}.tar.gz";
sha256 = "1srwm24lwyf00w1661wbx03xg6j943dk05jhwnwdjf99m82cqbgi";
};
buildInputs = [ emacs texinfo ];
meta = {
description = "Transparently access remote files from Emacs. Newer versions than built-in.";
homepage = https://www.gnu.org/software/tramp;
license = stdenv.lib.licenses.gpl3Plus;
platforms = stdenv.lib.platforms.all;
};
}

View File

@ -1566,6 +1566,8 @@ let
};
};
tramp = callPackage ../applications/editors/emacs-modes/tramp { };
tracking = melpaBuild rec {
pname = "tracking";
version = circe.version;