2023-07-15 17:15:38 +00:00
|
|
|
{ lib, rustPlatform, fetchCrate }:
|
2022-04-15 01:41:22 +00:00
|
|
|
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
|
|
pname = "melody";
|
2023-08-04 22:07:22 +00:00
|
|
|
version = "0.19.0";
|
2022-04-15 01:41:22 +00:00
|
|
|
|
|
|
|
src = fetchCrate {
|
|
|
|
pname = "melody_cli";
|
|
|
|
inherit version;
|
2024-07-27 06:49:29 +00:00
|
|
|
hash = "sha256-sJVZ4dRP6mAx9g7iqwI3L2cMa5x4qQuzKWPXvOOq6q8=";
|
2022-04-15 01:41:22 +00:00
|
|
|
};
|
|
|
|
|
2023-08-04 22:07:22 +00:00
|
|
|
cargoHash = "sha256-8UWz+gYUxf2UNWZCnhQlGiSX6kPsHPlYcdl7wD3Rchs=";
|
2022-04-15 01:41:22 +00:00
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "Language that compiles to regular expressions";
|
|
|
|
homepage = "https://github.com/yoav-lavi/melody";
|
|
|
|
license = licenses.mit;
|
2023-01-20 10:41:00 +00:00
|
|
|
maintainers = with maintainers; [ joelkoen ];
|
2024-01-02 11:29:13 +00:00
|
|
|
mainProgram = "melody";
|
2022-04-15 01:41:22 +00:00
|
|
|
};
|
|
|
|
}
|