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 = "fb93400f4ffd4e8b86f4740de313c7ce783fc26f";
        sha256 = "sha256-Q5tMWBNAue/D/CL0JdqU+kivG6UMSiNf8l5wsIp8PTg=";
    
    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])