parpd: init 2.3.0 (#346418)

This commit is contained in:
Aleksana 2024-10-29 11:10:26 +08:00 committed by GitHub
commit 2f9e007e40
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -0,0 +1,30 @@
{
stdenv,
lib,
fetchFromGitHub,
nix-update-script,
}:
stdenv.mkDerivation (finalAttrs: {
pname = "parpd";
version = "2.3.0";
src = fetchFromGitHub {
owner = "NetworkConfiguration";
repo = "parpd";
rev = "refs/tags/v${finalAttrs.version}";
hash = "sha256-6qmoAW9jm7xMRHZUMQLpe0N+UeVnQP8dC4+Iq+d5Eaw=";
};
passthru.updateScript = nix-update-script { };
meta = {
homepage = "https://roy.marples.name/projects/parpd";
changelog = "https://github.com/NetworkConfiguration/parpd/releases/tag/v${finalAttrs.version}";
description = "Proxy ARP Daemon that complies with RFC 1027";
maintainers = with lib.maintainers; [ bot-wxt1221 ];
platforms = lib.platforms.linux;
license = lib.licenses.bsd2;
mainProgram = "parpd";
};
})