Luke Granger-Brown
57725ef3ec
git-subtree-dir: third_party/nixpkgs git-subtree-split: 76612b17c0ce71689921ca12d9ffdc9c23ce40b2
33 lines
965 B
Nix
33 lines
965 B
Nix
{
|
|
lib,
|
|
fetchFromGitHub,
|
|
rustPlatform,
|
|
}:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "heliocron";
|
|
version = "0.8.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "mfreeborn";
|
|
repo = "heliocron";
|
|
rev = "v${version}";
|
|
hash = "sha256-5rzFz29Bpy2GR6bEt2DdCq9RtpdcY3SK/KnZrBrHUvk=";
|
|
};
|
|
|
|
cargoHash = "sha256-RjYE2TBvHnBgiwJi/Ys+wAmJoMHJuimcD07FOqwkcis=";
|
|
|
|
meta = {
|
|
description = "Execute tasks relative to sunset, sunrise and other solar events";
|
|
longDescription = "A simple command line application that integrates with `cron` to execute tasks relative to sunset, sunrise and other such solar events.";
|
|
homepage = "https://github.com/mfreeborn/heliocron";
|
|
changelog = "https://github.com/mfreeborn/heliocron/releases/tag/v${version}";
|
|
license = with lib.licenses; [
|
|
mit
|
|
asl20
|
|
];
|
|
maintainers = with lib.maintainers; [ TheColorman ];
|
|
mainProgram = "heliocron";
|
|
platforms = lib.platforms.linux;
|
|
};
|
|
}
|