fork
Configure Feed
Select the types of activity you want to include in your feed.
nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
fork
Configure Feed
Select the types of activity you want to include in your feed.
1{
2 lib,
3 rustPlatform,
4 fetchFromGitHub,
5}:
6
7rustPlatform.buildRustPackage rec {
8 pname = "morsel";
9 version = "0.1.1";
10
11 src = fetchFromGitHub {
12 owner = "SamLee514";
13 repo = "morsel";
14 rev = "v${version}";
15 hash = "sha256-bb+88GIyd92kHJAs25mJ9vmq0Ha2q0fdHnpTXhX2BFE=";
16 };
17
18 cargoHash = "sha256-3rwYD49yq3apKOGBSWvTm5m98ImbtTKqRb2cSgjWmFA=";
19
20 meta = {
21 description = "Command line tool to translate morse code input to text in real time";
22 mainProgram = "morsel";
23 homepage = "https://github.com/SamLee514/morsel";
24 license = lib.licenses.mit;
25 maintainers = with lib.maintainers; [ siraben ];
26 };
27}