Merge pull request #329823 from ExpidusOS/fix/pkgsllvm/elfutils
[NixPkgs.git] / pkgs / applications / blockchains / aperture / default.nix
blob90591889df5d72707efbae825dcb46df0d63b359
1 { buildGoModule
2 , fetchFromGitHub
3 , lib
4 }:
6 buildGoModule rec {
7   pname = "aperture";
8   version = "0.3-beta";
10   src = fetchFromGitHub {
11     owner = "lightninglabs";
12     repo = "aperture";
13     rev = "v${version}";
14     hash = "sha256-PsmaNJxWkXiFDA7IGhT+Kx1GUvv23c8L8Jz21/b48oo=";
15   };
17   vendorHash = "sha256-rrDLdE7c6ykhdqOfRpuxyRO4xqYp3LZvovAppzy1wVw=";
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 HannahMR ];
26     mainProgram = "aperture";
27   };