Unverified Commit 29443c8a authored by Sandro Jäckel's avatar Sandro Jäckel Committed by GitHub
Browse files

Merge pull request #244316 from sputn1ck/aperture

aperture: add aperture 0.2-beta
parents 28325907 0dc5b95e
Loading
Loading
Loading
Loading
+6 −0
Original line number Diff line number Diff line
@@ -15556,6 +15556,12 @@
    githubId = 6391601;
    name = "Roger Mason";
  };
  sputn1ck = {
    email = "kon@kon.ninja";
    github = "sputn1ck";
    githubId = 8904314;
    name = "Konstantin Nick";
  };
  squalus = {
    email = "squalus@squalus.net";
    github = "squalus";
+27 −0
Original line number Diff line number Diff line
{ buildGoModule
, fetchFromGitHub
, lib
}:

buildGoModule rec {
  pname = "aperture";
  version = "0.2-beta";

  src = fetchFromGitHub {
    owner = "lightninglabs";
    repo = "aperture";
    rev = "v${version}";
    hash = "sha256-l1fpjCAg+1PGNotKrjFLoYOMEzRNXC1mfdjRPfE0DsY=";
  };

  vendorHash = "sha256-tWFFmRSDUZXijAUTgR8k4EERHwIEBOyZZZ9BGXso/tU=";

  subPackages = [ "cmd/aperture" ];

  meta = with lib; {
    description = "L402 (Lightning HTTP 402) Reverse Proxy";
    homepage = "https://github.com/lightninglabs/aperture";
    license = licenses.mit;
    maintainers = with maintainers; [ sputn1ck ];
  };
}
+2 −0
Original line number Diff line number Diff line
@@ -36423,6 +36423,8 @@ with pkgs;
    withGui = false;
  };
  aperture = callPackage ../applications/blockchains/aperture { };
  balanceofsatoshis = nodePackages.balanceofsatoshis;
  bitcoin  = libsForQt5.callPackage ../applications/blockchains/bitcoin {