3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/applications/editors/emacs/elisp-packages/tramp/default.nix
2021-06-06 05:17:47 -03:00

29 lines
554 B
Nix

{ 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;
};
}