morsel: init at 0.1.0

main
Ben Siraphob 3 years ago
parent 6c2318e451
commit 054ca1dbb9
No known key found for this signature in database
GPG Key ID: 45F0E5D788143267
  1. 22
      pkgs/tools/text/morsel/default.nix
  2. 2
      pkgs/top-level/all-packages.nix

@ -0,0 +1,22 @@
{ 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 ];
};
}

@ -3410,6 +3410,8 @@ with pkgs;
moonraker = callPackage ../servers/moonraker { };
morsel = callPackage ../tools/text/morsel {};
mousetweaks = callPackage ../applications/accessibility/mousetweaks {
inherit (xorg) libX11 libXtst libXfixes;
};

Loading…
Cancel
Save