about summary refs log tree commit diff
path: root/nixpkgs/pkgs/applications/editors/emacs/elisp-packages/tramp/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/applications/editors/emacs/elisp-packages/tramp/default.nix')
-rw-r--r--nixpkgs/pkgs/applications/editors/emacs/elisp-packages/tramp/default.nix29
1 files changed, 29 insertions, 0 deletions
diff --git a/nixpkgs/pkgs/applications/editors/emacs/elisp-packages/tramp/default.nix b/nixpkgs/pkgs/applications/editors/emacs/elisp-packages/tramp/default.nix
new file mode 100644
index 000000000000..fee2cca6926a
--- /dev/null
+++ b/nixpkgs/pkgs/applications/editors/emacs/elisp-packages/tramp/default.nix
@@ -0,0 +1,29 @@
+{ lib
+, stdenv
+, fetchurl
+, emacs
+, texinfo
+}:
+
+stdenv.mkDerivation rec {
+  pname = "tramp";
+  version = "2.5.1";
+
+  src = fetchurl {
+    url = "mirror://gnu/tramp/${pname}-${version}.tar.gz";
+    hash = "sha256-+jjWBcj2dP9Xyj4dzpAX86KnajVa9eFDcjD9xTw6vks=";
+  };
+
+  buildInputs = [
+    emacs
+    texinfo
+  ];
+
+  meta = with lib; {
+    homepage = "https://www.gnu.org/software/tramp";
+    description = "Transparently access remote files from Emacs (latest version)";
+    license = licenses.gpl3Plus;
+    maintainers = with maintainers; [ AndersonTorres ];
+    inherit (emacs.meta) platforms;
+  };
+}