depot/third_party/nixpkgs/pkgs/tools/text/diction/default.nix
Default email a5adf1ddd8 Project import generated by Copybara.
GitOrigin-RevId: b3616bd96400ce0252c241d76fcafb64389defc6
2021-01-15 23:18:51 +01:00

23 lines
689 B
Nix

{ lib, stdenv, fetchurl }:
stdenv.mkDerivation rec {
pname = "diction";
version = "1.13";
src = fetchurl {
url = "http://www.moria.de/~michael/diction/${pname}-${version}.tar.gz";
sha256 = "08fi971b8qa4xycxbgb42i6b5ms3qx9zpp5hwpbxy2vypfs0wph9";
};
meta = {
description = "GNU style and diction utilities";
longDescription = ''
Diction and style are two old standard Unix commands. Diction identifies
wordy and commonly misused phrases. Style analyses surface
characteristics of a document, including sentence length and other
readability measures.
'';
license = lib.licenses.gpl3Plus;
platforms = lib.platforms.unix;
};
}