depot/third_party/nixpkgs/pkgs/tools/text/morsel/default.nix
Default email 893b09d324 Project import generated by Copybara.
GitOrigin-RevId: eac07edbd20ed4908b98790ba299250b5527ecdf
2021-12-24 12:21:11 +08:00

22 lines
619 B
Nix

{ lib, stdenv, fetchFromGitHub, rustPlatform }:
rustPlatform.buildRustPackage rec {
pname = "morsel";
version = "0.1.0";
src = fetchFromGitHub {
owner = "SamLee514";
repo = "morsel";
rev = "v${version}";
sha256 = "sha256-m4bCni/9rMTPhZSogpd5+ARrW11TPHSvQpdz3wUr9H4=";
};
cargoSha256 = "sha256-2xR2/013ocDKWS1oWitpAbSDPRwEJJqFcCIm6ZQpCoc=";
meta = with lib; {
description = "Command line tool to translate morse code input to text in real time";
homepage = "https://github.com/SamLee514/morsel";
license = licenses.mit;
maintainers = with maintainers; [ siraben ];
};
}