Merge pull request #330634 from r-ryantm/auto-update/circumflex
[NixPkgs.git] / pkgs / servers / unifiedpush-common-proxies / default.nix
blob34d787b84769be3acc291c80e64d62c99bfb83d3
1 { lib
2 , fetchFromGitHub
3 , buildGoModule
4 }:
6 buildGoModule rec {
7   pname = "unifiedpush-common-proxies";
8   version = "2.0.1";
10   src = fetchFromGitHub {
11     owner = "unifiedpush";
12     repo = "common-proxies";
13     rev = "v${version}";
14     sha256 = "sha256-pMzKK18FZCqJ86nqXfOT7tKCqIw6P0ioxRUi72aef0A=";
15   };
17   vendorHash = "sha256-wVZR/h0AtwZ1eo7EoRKNzaS2Wp0X01e2u3Ugmsnj644=";
19   meta = with lib; {
20     description = "Set of rewrite proxies and gateways for UnifiedPush";
21     homepage = "https://github.com/UnifiedPush/common-proxies";
22     license = licenses.mit;
23     maintainers = with maintainers; [ ];
24     mainProgram = "up_rewrite";
25   };