From c84864f87a66b4e4617db4d649b21eaa459cda68 Mon Sep 17 00:00:00 2001
From: Jean-Paul Calderone <exarkun@twistedmatrix.com>
Date: Thu, 8 Jul 2021 11:05:48 -0400
Subject: [PATCH] more removal

---
 stack-shell.nix | 17 -----------------
 1 file changed, 17 deletions(-)
 delete mode 100644 stack-shell.nix

diff --git a/stack-shell.nix b/stack-shell.nix
deleted file mode 100644
index 3fb4bf7..0000000
--- a/stack-shell.nix
+++ /dev/null
@@ -1,17 +0,0 @@
-# This is intended to be used as the shell-file for the stack configuration.
-# It sets up the non-Haskell parts of the stack build environment.
-{ ghc }:
-let
-  pkgs = import <nixpkgs> { };
-  # Get our Ristretto bindings.
-  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...
-  pkgs.haskell.lib.buildStackProject {
-    inherit ghc;
-    name = "PrivacyPass";
-    # zlib is a common dependency of many of our dependencies.  and we put our
-    # ristretto library in as well.
-    buildInputs = [ pkgs.zlib libchallenge_bypass_ristretto ];
-  }
-- 
GitLab