Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / applications / editors / em / default.nix
blob89cc795f5674e867ac65f88103b1f525ad2f2615
1 { lib
2 , stdenv
3 , fetchurl
4 }:
6 stdenv.mkDerivation rec {
7   pname = "em";
8   version = "1.0.0";
10   src = fetchurl {
11     url = "http://pgas.freeshell.org/C/em/${pname}-${version}.tar.gz";
12     hash = "sha256-ijMBkl7U1f9MTXgli9kUFB8ttMG6TMQnxfDMP9AblTQ=";
13   };
15   meta = with lib; {
16     homepage = "http://pgas.freeshell.org/C/em/";
17     description = "Editor for Mortals";
18     longDescription = ''
19       Em is a QMC variant of the standard Unix text editor - ed. It includes all
20       of ed, so the documentation for ed is fully applicable to em. Em also has
21       a number of new commands and facilities designed to improve its
22       interaction and increase its usefulness to users at fast vdu terminals
23       (such as the ITT's at QMC).
24     '';
25     license = licenses.publicDomain;
26     maintainers = with maintainers; [ AndersonTorres ];
27     platforms = platforms.unix;
28   };