mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 15:33:13 +00:00
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:
parent
5ea6d5fa72
commit
a4cbd69ef0
16
pkgs/applications/editors/emacs-modes/tramp/default.nix
Normal file
16
pkgs/applications/editors/emacs-modes/tramp/default.nix
Normal 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;
|
||||
};
|
||||
}
|
@ -1566,6 +1566,8 @@ let
|
||||
};
|
||||
};
|
||||
|
||||
tramp = callPackage ../applications/editors/emacs-modes/tramp { };
|
||||
|
||||
tracking = melpaBuild rec {
|
||||
pname = "tracking";
|
||||
version = circe.version;
|
||||
|
Loading…
Reference in New Issue
Block a user