forked from mirrors/nixpkgs
birdwatcher: init at 2.2.4
This commit is contained in:
parent
8ed86700a2
commit
55bd75e98f
28
pkgs/servers/birdwatcher/default.nix
Normal file
28
pkgs/servers/birdwatcher/default.nix
Normal file
|
@ -0,0 +1,28 @@
|
|||
{ lib
|
||||
, fetchFromGitHub
|
||||
, buildGoModule
|
||||
}:
|
||||
|
||||
buildGoModule rec {
|
||||
pname = "birdwatcher";
|
||||
version = "2.2.4";
|
||||
|
||||
vendorSha256 = "sha256-NTD2pnA/GeTn4tXtIFJ227qjRtvBFCjWYZv59Rumc74=";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "alice-lg";
|
||||
repo = "birdwatcher";
|
||||
rev = version;
|
||||
hash = "sha256-nsmwq7aUcozpp3av38S9wTKv0kiGfmyglQgse9MWSl4=";
|
||||
};
|
||||
|
||||
deleteVendor = true;
|
||||
|
||||
meta = with lib; {
|
||||
homepage = "https://github.com/alice-lg/birdwatcher";
|
||||
description = "A small HTTP server meant to provide an API defined by Barry O'Donovan's birds-eye to the BIRD internet routing daemon";
|
||||
changelog = "https://github.com/alice-lg/birdwatcher/blob/master/CHANGELOG";
|
||||
license = licenses.bsd3;
|
||||
maintainers = with maintainers; [ janik ];
|
||||
};
|
||||
}
|
|
@ -24677,6 +24677,8 @@ with pkgs;
|
|||
|
||||
bird-lg = callPackage ../servers/bird-lg { };
|
||||
|
||||
birdwatcher = callPackage ../servers/birdwatcher { };
|
||||
|
||||
bloat = callPackage ../servers/bloat { };
|
||||
|
||||
bosun = callPackage ../servers/monitoring/bosun { };
|
||||
|
|
Loading…
Reference in a new issue