Skip to content

Commit

Permalink
Merge pull request #315703 from amyipdev/pwalarmd-v2
Browse files Browse the repository at this point in the history
pwalarmd: init at 0.1.0
  • Loading branch information
Aleksanaa authored May 31, 2024
2 parents 4781a3c + b191f50 commit eb3a1d7
Showing 1 changed file with 37 additions and 0 deletions.
37 changes: 37 additions & 0 deletions pkgs/by-name/pw/pwalarmd/package.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
{ lib
, fetchFromGitHub
, rustPlatform
, pkg-config
, alsa-lib
}:

rustPlatform.buildRustPackage rec {
pname = "pwalarmd";
version = "0.1.0";

nativeBuildInputs = [ pkg-config ];
buildInputs = [ alsa-lib ];

src = fetchFromGitHub {
owner = "amyipdev";
repo = "pwalarmd";
rev = "v${version}";
hash = "sha256-xoC1PtDQjkvoWb9x8A43ITo6xyYOv9hxH2pxiZBBvKI=";
};

cargoHash = "sha256-cRAFnmgvzWLFAjB7H1rU4FdxMwm0J6d76kdFPoXpPMw=";

meta = {
description = "Background CLI-based alarm system for *nix";
longDescription = ''
pwalarmd is a command-line (daemon-based) alarm system.
It has extensive configuration and personalization, PulseAudio
and PipeWire support, and supports live configuration changes.
'';
mainProgram = "pwalarmd";
license = lib.licenses.gpl2Only;
platforms = lib.platforms.all;
badPlatforms = lib.platforms.darwin;
maintainers = with lib.maintainers; [ amyipdev ];
};
}

0 comments on commit eb3a1d7

Please sign in to comment.