mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 23:13:19 +00:00
heliocron: init at 0.8.1 (#338936)
This commit is contained in:
commit
59910df84e
@ -20672,6 +20672,13 @@
|
|||||||
githubId = 3512122;
|
githubId = 3512122;
|
||||||
keys = [ { fingerprint = "5F29 132D EFA8 5DA0 B598 5BF2 5941 754C 1CDE 33BB"; } ];
|
keys = [ { fingerprint = "5F29 132D EFA8 5DA0 B598 5BF2 5941 754C 1CDE 33BB"; } ];
|
||||||
};
|
};
|
||||||
|
TheColorman = {
|
||||||
|
name = "colorman";
|
||||||
|
email = "nixpkgs@colorman.me";
|
||||||
|
github = "TheColorman";
|
||||||
|
githubId = 18369995;
|
||||||
|
keys = [ { fingerprint = "3D8C A43C FBA2 5D28 0196 19F0 AB11 0475 B417 291D"; } ];
|
||||||
|
};
|
||||||
thedavidmeister = {
|
thedavidmeister = {
|
||||||
email = "thedavidmeister@gmail.com";
|
email = "thedavidmeister@gmail.com";
|
||||||
github = "thedavidmeister";
|
github = "thedavidmeister";
|
||||||
|
33
pkgs/by-name/he/heliocron/package.nix
Normal file
33
pkgs/by-name/he/heliocron/package.nix
Normal file
@ -0,0 +1,33 @@
|
|||||||
|
{
|
||||||
|
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;
|
||||||
|
};
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user