pytrainer: unpin python 3.10
[NixPkgs.git] / pkgs / tools / misc / moon-phases / default.nix
blobe1c41556827c4f75424e8a785c8698c463d65756
1 { lib, fetchCrate, rustPlatform }:
3 rustPlatform.buildRustPackage rec {
4   pname = "moon-phases";
5   version = "0.3.3";
7   src = fetchCrate {
8     inherit pname version;
9     hash = "sha256-8ZdtM246aqc49Q3ygMGk51LIzRA8RIdlaistbKUj3yY=";
10   };
12   cargoHash = "sha256-5JKM+GnigkpuX4qeGQAjDz/X48ZxXtCfYVwGco13YRM=";
14   meta = with lib; {
15     description = "Command-line/WM bar tool to display the moon phase at a certain date";
16     homepage = "https://github.com/mirrorwitch/moon-phases";
17     license = licenses.acsl14;
18     maintainers = with maintainers; [ mirrorwitch ];
19     mainProgram = "moon-phases";
20   };