chezmoi: 2.56.0 -> 2.57.0 (#372077)
[NixPkgs.git] / pkgs / by-name / me / melody / package.nix
blob6d77b73350e84bd35082b1f2f585c13572067b32
2   lib,
3   rustPlatform,
4   fetchCrate,
5 }:
7 rustPlatform.buildRustPackage rec {
8   pname = "melody";
9   version = "0.20.0";
11   src = fetchCrate {
12     pname = "melody_cli";
13     inherit version;
14     hash = "sha256-u+d16jc7GqT2aK2HzP+OXFUBkVodwcW+20sKqmxzYhk=";
15   };
17   cargoHash = "sha256-UpKv7hLPdsitZGgIegy7ZGEQcxGHGIHj2H4Ac7mG+xY=";
19   meta = with lib; {
20     description = "Language that compiles to regular expressions";
21     homepage = "https://github.com/yoav-lavi/melody";
22     license = licenses.mit;
23     maintainers = [ ];
24     mainProgram = "melody";
25   };