mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 06:53:01 +00:00
birdwatcher: Adopting package and refactoring (#350032)
This commit is contained in:
commit
4d40360df3
@ -1,7 +1,9 @@
|
||||
{ lib
|
||||
, fetchFromGitHub
|
||||
, buildGoModule
|
||||
, nixosTests
|
||||
{
|
||||
lib,
|
||||
fetchFromGitHub,
|
||||
buildGoModule,
|
||||
nixosTests,
|
||||
gitUpdater,
|
||||
}:
|
||||
|
||||
buildGoModule rec {
|
||||
@ -19,16 +21,20 @@ buildGoModule rec {
|
||||
|
||||
deleteVendor = true;
|
||||
|
||||
passthru.tests = {
|
||||
inherit (nixosTests) birdwatcher;
|
||||
passthru = {
|
||||
tests = {
|
||||
inherit (nixosTests) birdwatcher;
|
||||
};
|
||||
|
||||
updateScript = gitUpdater { };
|
||||
};
|
||||
|
||||
meta = with lib; {
|
||||
meta = {
|
||||
homepage = "https://github.com/alice-lg/birdwatcher";
|
||||
description = "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 = [ ];
|
||||
license = lib.licenses.bsd3;
|
||||
maintainers = with lib.maintainers; [ stv0g ];
|
||||
mainProgram = "birdwatcher";
|
||||
};
|
||||
}
|
@ -23923,8 +23923,6 @@ with pkgs;
|
||||
|
||||
bird-lg = callPackage ../servers/bird-lg { };
|
||||
|
||||
birdwatcher = callPackage ../servers/birdwatcher { };
|
||||
|
||||
bloat = callPackage ../servers/bloat { };
|
||||
|
||||
bosun = callPackage ../servers/monitoring/bosun { };
|
||||
|
Loading…
Reference in New Issue
Block a user