Skip to content
Snippets Groups Projects
Commit 330d14b6 authored by Jean-Paul Calderone's avatar Jean-Paul Calderone
Browse files

Simplify our helper zkapauthorizer.nix package

Rely on upstream package to supply typing and challenge-bypass-ristretto as
necessary.  Simplify our expression (approximately pointfree style) so we
don't have to know about any other arguments that might be passed or accepted.
parent c4195a01
Branches
No related tags found
1 merge request!51Upgrade Tahoe-LAFS on the storage servers
{ callPackage }: import "${import ./zkapauthorizer-repo.nix}/default.nix"
let
repo = import ./zkapauthorizer-repo.nix;
typing = callPackage "${repo}/typing.nix" { };
challenge-bypass-ristretto = callPackage "${repo}/python-challenge-bypass-ristretto.nix" { };
in
(callPackage "${repo}/zkapauthorizer.nix" {
inherit challenge-bypass-ristretto;
}).overrideAttrs (old: { doCheck = false; doInstallCheck = false; })
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment