mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-06 04:53:27 +00:00
23 lines
553 B
Nix
23 lines
553 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-UpKv7hLPdsitZGgIegy7ZGEQcxGHGIHj2H4Ac7mG+xY=";
|
|
|
|
meta = with lib; {
|
|
description = "Language that compiles to regular expressions";
|
|
homepage = "https://github.com/yoav-lavi/melody";
|
|
license = licenses.mit;
|
|
maintainers = [ ];
|
|
mainProgram = "melody";
|
|
};
|
|
}
|