Merge pull request #140750 from yu-re-ka/feature/up-proxy
This commit is contained in:
commit
ad9aafbe0e
25
pkgs/servers/unifiedpush-common-proxies/default.nix
Normal file
25
pkgs/servers/unifiedpush-common-proxies/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
@ -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 { };
|
||||
|
Loading…
Reference in New Issue
Block a user