azure-storage-azcopy: 10.27.1 -> 10.28.0 (#377459)
[NixPkgs.git] / pkgs / by-name / mo / moon-phases / package.nix
blob77cd0a73af7c34a68b6974dd9d9ab3ef6f3904ce
2   lib,
3   fetchCrate,
4   rustPlatform,
5 }:
7 rustPlatform.buildRustPackage rec {
8   pname = "moon-phases";
9   version = "0.3.3";
11   src = fetchCrate {
12     inherit pname version;
13     hash = "sha256-8ZdtM246aqc49Q3ygMGk51LIzRA8RIdlaistbKUj3yY=";
14   };
16   cargoHash = "sha256-5JKM+GnigkpuX4qeGQAjDz/X48ZxXtCfYVwGco13YRM=";
18   meta = with lib; {
19     description = "Command-line/WM bar tool to display the moon phase at a certain date";
20     homepage = "https://github.com/mirrorwitch/moon-phases";
21     license = licenses.acsl14;
22     maintainers = with maintainers; [ mirrorwitch ];
23     mainProgram = "moon-phases";
24   };