mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-05 21:33:07 +00:00
49 lines
1.2 KiB
Nix
49 lines
1.2 KiB
Nix
{
|
|
lib,
|
|
buildGoModule,
|
|
fetchFromGitHub,
|
|
nixosTests,
|
|
gitUpdater,
|
|
}:
|
|
|
|
buildGoModule rec {
|
|
pname = "corerad";
|
|
version = "1.3.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "mdlayher";
|
|
repo = "corerad";
|
|
rev = "v${version}";
|
|
hash = "sha256-tVK4chDV26vpuTaqVWe498j8ijZN2OOhe97LLE+xK9Y=";
|
|
};
|
|
|
|
vendorHash = "sha256-cmfRN7mU99TBtYmCsuHzliYqdfUHzDOFvKbnTZJqhLg=";
|
|
|
|
# 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 = ''
|
|
ldflags+=" -X github.com/mdlayher/corerad/internal/build.linkVersion=v${version}"
|
|
ldflags+=" -X github.com/mdlayher/corerad/internal/build.linkTimestamp=$(<.gittagtime)"
|
|
'';
|
|
|
|
passthru = {
|
|
updateScript = gitUpdater { rev-prefix = "v"; };
|
|
tests = {
|
|
inherit (nixosTests) corerad;
|
|
};
|
|
};
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/mdlayher/corerad";
|
|
description = "Extensible and observable IPv6 NDP RA daemon";
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [
|
|
mdlayher
|
|
jmbaur
|
|
];
|
|
platforms = platforms.linux;
|
|
mainProgram = "corerad";
|
|
};
|
|
}
|