Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
27 lines
560 B
Nix
27 lines
560 B
Nix
{
|
|
lib,
|
|
rustPlatform,
|
|
fetchCrate,
|
|
}:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "melody";
|
|
version = "0.20.0";
|
|
|
|
src = fetchCrate {
|
|
pname = "melody_cli";
|
|
inherit version;
|
|
hash = "sha256-u+d16jc7GqT2aK2HzP+OXFUBkVodwcW+20sKqmxzYhk=";
|
|
};
|
|
|
|
cargoHash = "sha256-TNW36FLK1E6uoDICfGN5ZmTX8V9ndSqyif7tbBqvqDI=";
|
|
|
|
meta = with lib; {
|
|
description = "Language that compiles to regular expressions";
|
|
homepage = "https://github.com/yoav-lavi/melody";
|
|
license = licenses.mit;
|
|
maintainers = [ ];
|
|
mainProgram = "melody";
|
|
};
|
|
}
|