Skip to content
Snippets Groups Projects
default.nix 268 B
Newer Older
Tom Prince's avatar
Tom Prince committed
{ callPackage, fetchFromGitHub, lib }:
Tom Prince's avatar
Tom Prince committed
  repo-data = lib.importJSON ./repo.json;
  repo = fetchFromGitHub (builtins.removeAttrs repo-data [ "branch" ]);
  PaymentServer = (import "${repo}/nix").PaymentServer;
  PaymentServer.components.exes."PaymentServer-exe"