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

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

22 lines
565 B
Nix
Raw Normal View History

2022-02-20 00:27:54 +00:00
{ lib, stdenv, fetchCrate, rustPlatform }:
rustPlatform.buildRustPackage rec {
pname = "melody";
2022-04-11 04:52:38 +00:00
version = "0.13.10";
2022-02-20 00:27:54 +00:00
src = fetchCrate {
pname = "melody_cli";
inherit version;
2022-04-11 04:52:38 +00:00
sha256 = "05slrh5dqbpsvimdr0rlhj04kf1qzwij3zlardvbmvhvfccf4188";
2022-02-20 00:27:54 +00:00
};
2022-04-11 04:52:38 +00:00
cargoSha256 = "0qh1byysbc6pl3cvx2vdpl8crx5id59hhrwqzk5g7091spm8wf79";
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;
maintainers = with maintainers; [ jyooru ];
};
}