From 22c98686ac6bec8b0b168932ec269835a19e7d18 Mon Sep 17 00:00:00 2001
From: Jean-Paul Calderone <exarkun@twistedmatrix.com>
Date: Thu, 13 Jan 2022 15:29:27 -0500
Subject: [PATCH] callPackage to propagate our nixpkgs

---
 nix/challenge-bypass-ristretto.nix | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

diff --git a/nix/challenge-bypass-ristretto.nix b/nix/challenge-bypass-ristretto.nix
index e813986..10bf5e8 100644
--- a/nix/challenge-bypass-ristretto.nix
+++ b/nix/challenge-bypass-ristretto.nix
@@ -2,8 +2,7 @@
 let
   sources = import ./sources.nix;
 in
-{ fetchFromGitHub
-, callPackage
+{ callPackage
 , libchallenge_bypass_ristretto_ffi_repo ? sources.libchallenge_bypass_ristretto_ffi
 }:
-  import "${libchallenge_bypass_ristretto_ffi_repo}/challenge-bypass-ristretto.nix" { }
+  callPackage "${libchallenge_bypass_ristretto_ffi_repo}/challenge-bypass-ristretto.nix" { }
-- 
GitLab