mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-26 00:43:20 +00:00
Merge pull request #315703 from amyipdev/pwalarmd-v2
pwalarmd: init at 0.1.0
This commit is contained in:
commit
eb3a1d797d
37
pkgs/by-name/pw/pwalarmd/package.nix
Normal file
37
pkgs/by-name/pw/pwalarmd/package.nix
Normal file
@ -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 ];
|
||||
};
|
||||
}
|
Loading…
Reference in New Issue
Block a user