From fba13fc31b121c7c325594a57d41478564d41f6f Mon Sep 17 00:00:00 2001
From: Daniel Firth <dan.firth@homotopic.tech>
Date: Tue, 8 Nov 2022 15:57:43 +0000
Subject: [PATCH] bytestring-handle: remove

---
 manifest.dhall             |  1 -
 overlay.nix                |  2 --
 pkgs/bytestring-handle.nix | 41 --------------------------------------
 3 files changed, 44 deletions(-)
 delete mode 100644 pkgs/bytestring-handle.nix

diff --git a/manifest.dhall b/manifest.dhall
index 283ede72..89cd3942 100644
--- a/manifest.dhall
+++ b/manifest.dhall
@@ -137,7 +137,6 @@ in  [ callHackage "Cabal" "3.8.1.0"
     , callHackage "byteable" "0.1.1"
     , callHackage "byteorder" "1.0.4"
     , callHackage "bytestring-builder" "0.10.8.2.0"
-    , callHackage "bytestring-handle" "0.1.0.6"
     , callHackage "bytes" "0.17.2"
     , callHackage "c2hs" "0.28.8"
     , callHackage "cabal-doctest" "1.0.9"
diff --git a/overlay.nix b/overlay.nix
index 63715af4..981d54a4 100644
--- a/overlay.nix
+++ b/overlay.nix
@@ -149,8 +149,6 @@ self: with pkgs.haskell.lib; {
 
   bytestring-builder = self.callPackage (./pkgs/bytestring-builder.nix) { };
 
-  bytestring-handle = self.callPackage (./pkgs/bytestring-handle.nix) { };
-
   c2hs = self.callPackage (./pkgs/c2hs.nix) { };
 
   cabal-doctest = self.callPackage (./pkgs/cabal-doctest.nix) { };
diff --git a/pkgs/bytestring-handle.nix b/pkgs/bytestring-handle.nix
deleted file mode 100644
index 85dec8a5..00000000
--- a/pkgs/bytestring-handle.nix
+++ /dev/null
@@ -1,41 +0,0 @@
-{ mkDerivation
-, base
-, bytestring
-, HUnit
-, lib
-, QuickCheck
-, test-framework
-, test-framework-hunit
-, test-framework-quickcheck2
-}:
-mkDerivation {
-  pname = "bytestring-handle";
-  version = "0.1.0.6";
-  sha256 = "fe681cdf7e2238389b6d2090e264b10d0e5085658c89e7ffc870c7a0a43ac1a1";
-  revision = "2";
-  editedCabalFile = "1x1sy3dz2ph9v6jk22wmcv5gk2bka5fv4s68i8q0j9m9pk085w37";
-  isLibrary = true;
-  isExecutable = false;
-  enableSeparateDataOutput = false;
-  libraryHaskellDepends = [ base bytestring ];
-  testHaskellDepends = [
-    base
-    bytestring
-    HUnit
-    QuickCheck
-    test-framework
-    test-framework-hunit
-    test-framework-quickcheck2
-  ];
-  enableLibraryProfiling = false;
-  enableExecutableProfiling = false;
-  doHaddock = false;
-  jailbreak = true;
-  doCheck = false;
-  doBenchmark = false;
-  hyperlinkSource = false;
-  homepage = "http://hub.darcs.net/ganesh/bytestring-handle";
-  description = "ByteString-backed Handles";
-  license = lib.licenses.bsd3;
-  broken = false;
-}
-- 
GitLab