about summary refs log tree commit diff
path: root/nixpkgs/pkgs/applications/editors/emacs-modes/tramp/default.nix
blob: 237c05c5fa76146359a7f7651560bc19982761c4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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;
  };
}