Merge pull request #330634 from r-ryantm/auto-update/circumflex
[NixPkgs.git] / pkgs / servers / birdwatcher / default.nix
blob57840e526884d406b0fb911b75b69b039fdbd186
1 { lib
2 , fetchFromGitHub
3 , buildGoModule
4 }:
6 buildGoModule rec {
7   pname = "birdwatcher";
8   version = "2.2.5";
10   vendorHash = "sha256-NTD2pnA/GeTn4tXtIFJ227qjRtvBFCjWYZv59Rumc74=";
12   src = fetchFromGitHub {
13     owner = "alice-lg";
14     repo = "birdwatcher";
15     rev = version;
16     hash = "sha256-TTU5TYWD/KSh/orDdQnNrQJ/G7z5suBu7psF9V6AAIw=";
17   };
19   deleteVendor = true;
21   meta = with lib; {
22     homepage = "https://github.com/alice-lg/birdwatcher";
23     description = "Small HTTP server meant to provide an API defined by Barry O'Donovan's birds-eye to the BIRD internet routing daemon";
24     changelog = "https://github.com/alice-lg/birdwatcher/blob/master/CHANGELOG";
25     license = licenses.bsd3;
26     maintainers = with maintainers; [ ];
27     mainProgram = "birdwatcher";
28   };