41 lines
1.1 KiB
Nix
41 lines
1.1 KiB
Nix
{ stdenv, buildGoModule, fetchFromGitHub, nixosTests }:
|
|
|
|
buildGoModule rec {
|
|
pname = "corerad";
|
|
version = "0.2.8";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "mdlayher";
|
|
repo = "corerad";
|
|
rev = "v${version}";
|
|
sha256 = "053rihi8lqai3z837ddi441yl41lsg1zj9gl62s9vbjmq5l11fjh";
|
|
};
|
|
|
|
vendorSha256 = "1ra4yfplmgzxzs1nlbm0izg339fjnkfrw071y8w4m6q6wnzdhljb";
|
|
|
|
doCheck = false;
|
|
|
|
# Since the tarball pulled from GitHub doesn't contain git tag information,
|
|
# we fetch the expected tag's timestamp from a file in the root of the
|
|
# repository.
|
|
preBuild = ''
|
|
buildFlagsArray=(
|
|
-ldflags="
|
|
-X github.com/mdlayher/corerad/internal/build.linkTimestamp=$(<.gittagtime)
|
|
-X github.com/mdlayher/corerad/internal/build.linkVersion=v${version}
|
|
"
|
|
)
|
|
'';
|
|
|
|
passthru.tests = {
|
|
inherit (nixosTests) corerad;
|
|
};
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = "https://github.com/mdlayher/corerad";
|
|
description = "Extensible and observable IPv6 NDP RA daemon";
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [ mdlayher ];
|
|
};
|
|
}
|