mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-10 08:39:08 +03:00
47b708cb2b
Diff: https://github.com/alice-lg/birdwatcher/compare/2.2.4...2.2.5 Changelog: https://github.com/alice-lg/birdwatcher/blob/master/CHANGELOG
30 lines
789 B
Nix
30 lines
789 B
Nix
{ lib
|
|
, fetchFromGitHub
|
|
, buildGoModule
|
|
}:
|
|
|
|
buildGoModule rec {
|
|
pname = "birdwatcher";
|
|
version = "2.2.5";
|
|
|
|
vendorHash = "sha256-NTD2pnA/GeTn4tXtIFJ227qjRtvBFCjWYZv59Rumc74=";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "alice-lg";
|
|
repo = "birdwatcher";
|
|
rev = version;
|
|
hash = "sha256-TTU5TYWD/KSh/orDdQnNrQJ/G7z5suBu7psF9V6AAIw=";
|
|
};
|
|
|
|
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 ];
|
|
mainProgram = "birdwatcher";
|
|
};
|
|
}
|