nixpkgs/pkgs/applications/editors/emacs/elisp-packages/tramp/default.nix

30 lines
600 B
Nix
Raw Normal View History

2021-06-06 07:35:55 +00:00
{ lib
, stdenv
, fetchurl
, emacs
, texinfo
}:
stdenv.mkDerivation rec {
2021-06-06 07:35:55 +00:00
pname = "tramp";
2021-09-14 17:50:35 +00:00
version = "2.5.1";
2021-06-06 07:35:55 +00:00
src = fetchurl {
2021-06-06 07:35:55 +00:00
url = "mirror://gnu/tramp/${pname}-${version}.tar.gz";
2021-09-14 17:50:35 +00:00
hash = "sha256-+jjWBcj2dP9Xyj4dzpAX86KnajVa9eFDcjD9xTw6vks=";
};
2021-06-06 07:35:55 +00:00
buildInputs = [
emacs
texinfo
];
2021-09-14 17:50:35 +00:00
meta = with lib; {
homepage = "https://www.gnu.org/software/tramp";
2021-09-14 17:50:35 +00:00
description = "Transparently access remote files from Emacs (latest version)";
license = licenses.gpl3Plus;
maintainers = with maintainers; [ AndersonTorres ];
2021-06-06 07:35:55 +00:00
inherit (emacs.meta) platforms;
};
}