about summary refs log tree commit diff
path: root/nixpkgs/pkgs/applications/editors/emacs-modes/tramp/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/applications/editors/emacs-modes/tramp/default.nix')
-rw-r--r--nixpkgs/pkgs/applications/editors/emacs-modes/tramp/default.nix16
1 files changed, 16 insertions, 0 deletions
diff --git a/nixpkgs/pkgs/applications/editors/emacs-modes/tramp/default.nix b/nixpkgs/pkgs/applications/editors/emacs-modes/tramp/default.nix
new file mode 100644
index 000000000000..237c05c5fa76
--- /dev/null
+++ b/nixpkgs/pkgs/applications/editors/emacs-modes/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;
+  };
+}