mirror of
https://github.com/CHN-beta/nixpkgs.git
synced 2026-01-11 18:32:23 +08:00
uradvd: init at 0-unstable-2025-08-16 (#441481)
This commit is contained in:
@@ -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";
|
||||
|
||||
34
pkgs/by-name/ur/uradvd/package.nix
Normal file
34
pkgs/by-name/ur/uradvd/package.nix
Normal 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";
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user