nixpkgs/pkgs/tools/misc/melody/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

23 lines
582 B
Nix
Raw Normal View History

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