Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / applications / blockchains / aperture / default.nix
blobe208666bfe2cb969564cabcf57591645fa366b40
1 { buildGoModule
2 , fetchFromGitHub
3 , lib
4 }:
6 buildGoModule rec {
7   pname = "aperture";
8   version = "0.2-beta";
10   src = fetchFromGitHub {
11     owner = "lightninglabs";
12     repo = "aperture";
13     rev = "v${version}";
14     hash = "sha256-l1fpjCAg+1PGNotKrjFLoYOMEzRNXC1mfdjRPfE0DsY=";
15   };
17   vendorHash = "sha256-tWFFmRSDUZXijAUTgR8k4EERHwIEBOyZZZ9BGXso/tU=";
19   subPackages = [ "cmd/aperture" ];
21   meta = with lib; {
22     description = "L402 (Lightning HTTP 402) Reverse Proxy";
23     homepage = "https://github.com/lightninglabs/aperture";
24     license = licenses.mit;
25     maintainers = with maintainers; [ sputn1ck ];
26   };