nixpkgs/pkgs/tools/misc/moon-phases/default.nix

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

22 lines
607 B
Nix
Raw Normal View History

2023-10-03 22:09:28 +00:00
{ 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 ];
2023-11-27 01:17:53 +00:00
mainProgram = "moon-phases";
2023-10-03 22:09:28 +00:00
};
}