2023-07-12 16:22:45 +01:00
|
|
|
{ lib, rustPlatform, fetchCrate }:
|
2022-02-20 00:27:54 +00:00
|
|
|
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
|
|
pname = "melody";
|
2023-07-29 06:56:08 +01:00
|
|
|
version = "0.19.0";
|
2022-02-20 00:27:54 +00:00
|
|
|
|
|
|
|
src = fetchCrate {
|
|
|
|
pname = "melody_cli";
|
|
|
|
inherit version;
|
2024-07-12 19:42:22 +01:00
|
|
|
hash = "sha256-sJVZ4dRP6mAx9g7iqwI3L2cMa5x4qQuzKWPXvOOq6q8=";
|
2022-02-20 00:27:54 +00:00
|
|
|
};
|
|
|
|
|
2023-07-29 06:56:08 +01: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;
|
2024-08-23 00:46:20 +01:00
|
|
|
maintainers = [ ];
|
2023-11-27 01:17:53 +00:00
|
|
|
mainProgram = "melody";
|
2022-02-20 00:27:54 +00:00
|
|
|
};
|
|
|
|
}
|