nixpkgs/pkgs/by-name/me/melody/package.nix

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

23 lines
553 B
Nix
Raw Normal View History

{ 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;
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
};
}