Skip to content
Snippets Groups Projects
privatestorage.nix 425 B
Newer Older
  • Learn to ignore specific revisions
  • { pkgs, fetchFromGitHub, callPackage }:
    let
      zkap-authorizer-src = fetchFromGitHub {
    
    Tom Prince's avatar
    Tom Prince committed
        owner = "tp-la";
    
        repo = "ZKAPAuthorizer";
    
    Tom Prince's avatar
    Tom Prince committed
        # tomprince -- mach-nix branch
        rev = "ca1e00a2ce8994bc088f06c81d8d68efb5678e43";
        sha256 = "sha256-IJyuUpuy8hwqTkWRNhNwW7/v4/GmOKsbb9ickA2bTRc=";
    
    Tom Prince's avatar
    Tom Prince committed
      zkap-authorizer = callPackage (zkap-authorizer-src + "/new.nix") {};
    
    Tom Prince's avatar
    Tom Prince committed
      pkgs.python27.withPackages (_: [zkap-authorizer])