-
-
Notifications
You must be signed in to change notification settings - Fork 15k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Init wavelog, an amateur radio logging application. Signed-off-by: Ethan Carter Edwards <ethan@ethancedwards.com>
- Loading branch information
1 parent
8a7f04a
commit 1e0ed03
Showing
1 changed file
with
36 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 ]; | ||
}; | ||
} |