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