summary refs log tree commit diff
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.nix28
1 files changed, 28 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 00000000000..72dbf7a0f47
--- /dev/null
+++ b/pkgs/applications/editors/emacs/elisp-packages/tramp/default.nix
@@ -0,0 +1,28 @@
+{ lib
+, stdenv
+, fetchurl
+, emacs
+, texinfo
+}:
+
+stdenv.mkDerivation rec {
+  pname = "tramp";
+  version = "2.5.0";
+
+  src = fetchurl {
+    url = "mirror://gnu/tramp/${pname}-${version}.tar.gz";
+    sha256 = "sha256-w+6HJA8kFb75Z+7vM1zDnzOnkSSIXKnLVyCcEh+nMGY=";
+  };
+
+  buildInputs = [
+    emacs
+    texinfo
+  ];
+
+  meta = {
+    homepage = "https://www.gnu.org/software/tramp";
+    description = "Transparently access remote files from Emacs. Newer versions than built-in.";
+    license = lib.licenses.gpl3Plus;
+    inherit (emacs.meta) platforms;
+  };
+}