mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2025-01-04 01:42:53 +03:00
corerad: init at v0.1.4
Signed-off-by: Matt Layher <mdlayher@gmail.com>
This commit is contained in:
parent
b8d09084d2
commit
987a5ffea5
24
pkgs/tools/networking/corerad/default.nix
Normal file
24
pkgs/tools/networking/corerad/default.nix
Normal file
@ -0,0 +1,24 @@
|
||||
{ stdenv, buildGoModule, fetchFromGitHub }:
|
||||
|
||||
buildGoModule rec {
|
||||
pname = "corerad";
|
||||
version = "0.1.4";
|
||||
|
||||
goPackagePath = "github.com/mdlayher/corerad";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "mdlayher";
|
||||
repo = "corerad";
|
||||
rev = "v${version}";
|
||||
sha256 = "0qlmmgdz69gqqn6h5kb3gsjyj7lm6pcfcx9xlmrxhisj914ij76r";
|
||||
};
|
||||
|
||||
modSha256 = "0vim91yvw0cf9bd10hfanz8azq7q19lp2x61rs44ycx9zm3qdhcw";
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
homepage = "https://github.com/mdlayher/corerad";
|
||||
description = "CoreRAD extensible and observable IPv6 NDP RA daemon";
|
||||
license = licenses.asl20;
|
||||
maintainers = with maintainers; [ mdlayher ];
|
||||
};
|
||||
}
|
@ -15978,6 +15978,8 @@ in
|
||||
|
||||
coredns = callPackage ../servers/dns/coredns { };
|
||||
|
||||
corerad = callPackage ../tools/networking/corerad { };
|
||||
|
||||
cpufrequtils = callPackage ../os-specific/linux/cpufrequtils { };
|
||||
|
||||
cpuset = callPackage ../os-specific/linux/cpuset { };
|
||||
|
Loading…
Reference in New Issue
Block a user