uradvd: init at 0-unstable-2025-08-16 (#441481)

This commit is contained in:
Matt Sturgeon
2025-09-12 10:51:49 +00:00
committed by GitHub
2 changed files with 40 additions and 0 deletions

View File

@@ -893,6 +893,12 @@
githubId = 4717906;
name = "Jakub Skokan";
};
aiyion = {
email = "git@aiyionpri.me";
github = "AiyionPrime";
githubId = 6937725;
name = "Jan-Niklas Burfeind";
};
ajaxbits = {
email = "contact@ajaxbits.com";
github = "ajaxbits";

View File

@@ -0,0 +1,34 @@
{
stdenv,
lib,
fetchFromGitHub,
}:
stdenv.mkDerivation {
pname = "uradvd";
version = "0-unstable-2025-08-16";
src = fetchFromGitHub {
owner = "freifunk-gluon";
repo = "uradvd";
rev = "b37524dfb0292c425fd61f5bffb3101fb1979264";
hash = "sha256-PyOAt9dTFdHHF7OlHi9BBTjCN2Hmk8BsHkD2rV94ZDM=";
};
installPhase = ''
runHook preInstall
install -D --mode=0755 uradvd -t "$out/bin"
runHook postInstall
'';
meta = {
description = "Tiny IPv6 Router Advertisement Daemon";
homepage = "https://github.com/freifunk-gluon/uradvd";
license = lib.licenses.bsd2;
platforms = lib.platforms.linux;
maintainers = with lib.maintainers; [ aiyion ];
mainProgram = "uradvd";
};
}