Merge pull request #140750 from yu-re-ka/feature/up-proxy

This commit is contained in:
Sandro 2021-10-07 22:46:51 +02:00 committed by GitHub
commit ad9aafbe0e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 27 additions and 0 deletions

View File

@ -0,0 +1,25 @@
{ lib
, fetchFromGitHub
, buildGoModule
}:
buildGoModule rec {
pname = "unifiedpush-common-proxies";
version = "1.0.0";
src = fetchFromGitHub {
owner = "unifiedpush";
repo = "common-proxies";
rev = "v${version}";
sha256 = "sha256-1Nl36Ldb0/DrQEKgPBsCgJk7oRCIq2m9Vb8D8wnS1g0=";
};
vendorSha256 = "sha256-7A2ErjqmgberMabayWEc3w53+YierfetzmT8DzHwbpE=";
meta = with lib; {
description = "A set of rewrite proxies and gateways for UnifiedPush";
homepage = "https://github.com/UnifiedPush/common-proxies";
license = licenses.mit;
maintainers = with maintainers; [ yuka ];
};
}

View File

@ -20536,6 +20536,8 @@ with pkgs;
networkaudiod = callPackage ../servers/networkaudiod { };
unifiedpush-common-proxies = callPackage ../servers/unifiedpush-common-proxies { };
unit = callPackage ../servers/http/unit { };
ncdns = callPackage ../servers/dns/ncdns { };