Skip to content
Snippets Groups Projects

Update PaymentServer.

Merged Tom Prince requested to merge tomprince/PrivateStorageio:update-payment-server into develop
5 files
+ 101
9
Compare changes
  • Side-by-side
  • Inline
Files
5
{ callPackage }:
{ callPackage, fetchFromGitHub, lib }:
let
repo = callPackage ./repo.nix { };
repo-data = lib.importJSON ./repo.json;
repo = fetchFromGitHub (builtins.removeAttrs repo-data [ "branch" ]);
PaymentServer = (import "${repo}/nix").PaymentServer;
in
PaymentServer.components.exes."PaymentServer-exe"
Loading