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

Update the stack config to point at the updated package too

parent b05f2326
Branches
No related tags found
1 merge request!49Switch to newer python-challenge-bypass-ristretto repo
{ fetchFromGitHub, callPackage }:
let
src = fetchFromGitHub {
owner = "LeastAuthority";
repo = "privacypass";
rev = "45855401e163f8e622bd93a5c5bce13de8c8510a";
sha256 = "15wv8vas6x8cdicylp0m632c916p7qxq1k4lnchr8c92lldp0rv7";
};
in
callPackage "${src}/ristretto.nix" { }
......@@ -4,7 +4,7 @@
let
pkgs = import <nixpkgs> { };
# Get our Ristretto bindings.
ristretto = pkgs.callPackage ./ristretto.nix { };
libchallenge_bypass_ristretto = pkgs.callPackage ./nix/challenge-bypass-ristretto.nix { };
in
# This is what you're supposed to call in a stack shell-file. I don't
# *really* know what it does but I know it works...
......@@ -13,5 +13,5 @@ in
name = "PrivacyPass";
# zlib is a common dependency of many of our dependencies. and we put our
# ristretto library in as well.
buildInputs = [ pkgs.zlib ristretto ];
buildInputs = [ pkgs.zlib libchallenge_bypass_ristretto ];
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment