2016-09-14 20:32:29 +01:00
|
|
|
{ stdenv, fetchurl, emacs, texinfo }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-09-01 19:55:43 +01:00
|
|
|
name = "tramp-2.4.2";
|
2016-09-14 20:32:29 +01:00
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://gnu/tramp/${name}.tar.gz";
|
2019-09-01 19:55:43 +01:00
|
|
|
sha256 = "082nwvi99y0bvpl1yhn4yjc8a613jh1pdck253lxn062lkcxxw61";
|
2016-09-14 20:32:29 +01:00
|
|
|
};
|
|
|
|
buildInputs = [ emacs texinfo ];
|
|
|
|
meta = {
|
|
|
|
description = "Transparently access remote files from Emacs. Newer versions than built-in.";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://www.gnu.org/software/tramp";
|
2016-09-14 20:32:29 +01:00
|
|
|
license = stdenv.lib.licenses.gpl3Plus;
|
|
|
|
platforms = stdenv.lib.platforms.all;
|
|
|
|
};
|
|
|
|
}
|