37 lines
979 B
Nix
37 lines
979 B
Nix
{ lib, stdenv, rustPlatform, fetchFromGitHub, Security }:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "autocorrect";
|
|
version = "2.6.2";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "huacnlee";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
sha256 = "sha256-QHQQrUQCfDAlAtDcfrAkOwRhQkO+HcwnPfJ5+jb1290=";
|
|
};
|
|
|
|
cargoLock = {
|
|
lockFile = ./Cargo.lock;
|
|
};
|
|
|
|
postPatch = ''
|
|
cp ${./Cargo.lock} Cargo.lock
|
|
'';
|
|
|
|
buildInputs = lib.optional stdenv.isDarwin Security;
|
|
|
|
cargoBuildFlags = [ "-p" "autocorrect-cli" ];
|
|
cargoTestFlags = [ "-p" "autocorrect-cli" ];
|
|
|
|
passthru.updateScript = ./update.sh;
|
|
|
|
meta = with lib; {
|
|
description = "A linter and formatter for help you improve copywriting, to correct spaces, punctuations between CJK (Chinese, Japanese, Korean)";
|
|
homepage = "https://huacnlee.github.io/autocorrect";
|
|
changelog = "https://github.com/huacnlee/autocorrect/releases/tag/v${version}";
|
|
license = licenses.mit;
|
|
maintainers = [];
|
|
};
|
|
}
|