depot/third_party/nixpkgs/pkgs/tools/misc/moon-phases/default.nix
Default email 5e7c2d6cef Project import generated by Copybara.
GitOrigin-RevId: f99e5f03cc0aa231ab5950a15ed02afec45ed51a
2023-10-09 21:29:22 +02:00

20 lines
574 B
Nix

{ lib, fetchCrate, rustPlatform }:
rustPlatform.buildRustPackage rec {
pname = "moon-phases";
version = "0.3.3";
src = fetchCrate {
inherit pname version;
hash = "sha256-8ZdtM246aqc49Q3ygMGk51LIzRA8RIdlaistbKUj3yY=";
};
cargoSha256 = "sha256-5JKM+GnigkpuX4qeGQAjDz/X48ZxXtCfYVwGco13YRM=";
meta = with lib; {
description = "Command-line/WM bar tool to display the moon phase at a certain date";
homepage = "https://github.com/mirrorwitch/moon-phases";
license = licenses.acsl14;
maintainers = with maintainers; [ mirrorwitch ];
};
}