Skip to content

Commit

Permalink
wavelog: init at 1.9.1
Browse files Browse the repository at this point in the history
Init wavelog, an amateur radio logging application.

Signed-off-by: Ethan Carter Edwards <ethan@ethancedwards.com>
  • Loading branch information
ethancedwards8 committed Jan 9, 2025
1 parent 8a7f04a commit 1e0ed03
Showing 1 changed file with 36 additions and 0 deletions.
36 changes: 36 additions & 0 deletions pkgs/by-name/wa/wavelog/package.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
{
lib,
stdenvNoCC,
fetchFromGitHub,
nix-update-script,
php,
}:

stdenvNoCC.mkDerivation rec {
pname = "wavelog";
version = "1.9.1";

src = fetchFromGitHub {
owner = "wavelog";
repo = pname;
tag = version;
hash = "sha256-BYCRqb27QWOo74w3O6tfZGEDF3UInsgshsIm9uxOm+8=";
};

installPhase = ''
mkdir -p $out
cp -R . $out
'';

passthru = {
updateScript = nix-update-script { };
};

meta = {
description = "Webbased Amateur Radio Logging Software - Log your contacts from everywhere!";
license = lib.licenses.mit;
homepage = "https://www.wavelog.org";
platforms = php.meta.platforms;
maintainers = with lib.maintainers; [ ethancedwards8 ];
};
}

0 comments on commit 1e0ed03

Please sign in to comment.