summaryrefslogtreecommitdiff
path: root/pkgs/applications/editors/emacs/elisp-packages/tramp/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/applications/editors/emacs/elisp-packages/tramp/default.nix')
-rw-r--r--pkgs/applications/editors/emacs/elisp-packages/tramp/default.nix16
1 files changed, 16 insertions, 0 deletions
diff --git a/pkgs/applications/editors/emacs/elisp-packages/tramp/default.nix b/pkgs/applications/editors/emacs/elisp-packages/tramp/default.nix
new file mode 100644
index 000000000000..237c05c5fa76
--- /dev/null
+++ b/pkgs/applications/editors/emacs/elisp-packages/tramp/default.nix
@@ -0,0 +1,16 @@
+{ lib, stdenv, fetchurl, emacs, texinfo }:
+
+stdenv.mkDerivation rec {
+ name = "tramp-2.4.2";
+ src = fetchurl {
+ url = "mirror://gnu/tramp/${name}.tar.gz";
+ sha256 = "082nwvi99y0bvpl1yhn4yjc8a613jh1pdck253lxn062lkcxxw61";
+ };
+ buildInputs = [ emacs texinfo ];
+ meta = {
+ description = "Transparently access remote files from Emacs. Newer versions than built-in.";
+ homepage = "https://www.gnu.org/software/tramp";
+ license = lib.licenses.gpl3Plus;
+ platforms = lib.platforms.all;
+ };
+}