Skip to content

Commit

Permalink
removed some package overrides
Browse files Browse the repository at this point in the history
  • Loading branch information
mpscholten committed Mar 19, 2024
1 parent 3b440c4 commit cf84d70
Show file tree
Hide file tree
Showing 7 changed files with 21 additions and 175 deletions.
24 changes: 0 additions & 24 deletions NixSupport/haskell-packages/clientsession.nix

This file was deleted.

27 changes: 0 additions & 27 deletions NixSupport/haskell-packages/haskell-to-elm.nix

This file was deleted.

41 changes: 0 additions & 41 deletions NixSupport/haskell-packages/minio-hs.nix

This file was deleted.

22 changes: 0 additions & 22 deletions NixSupport/haskell-packages/smtp-mail.nix

This file was deleted.

28 changes: 0 additions & 28 deletions NixSupport/haskell-packages/typerep-map.nix

This file was deleted.

33 changes: 0 additions & 33 deletions NixSupport/haskell-packages/websockets.nix

This file was deleted.

21 changes: 21 additions & 0 deletions NixSupport/mkGhcCompiler.nix
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,27 @@ in ghcCompiler.override {
(self: super: { ormolu_0_7_4_0 = if pkgs.system == "aarch64-darwin" then pkgs.haskell.lib.overrideCabal super.ormolu_0_7_4_0 (_: { enableSeparateBinOutput = false; }) else super.ormolu_0_7_4_0; })
(self: super: { ghc-syntax-highlighter = super.ghc-syntax-highlighter_0_0_11_0; })
(self: super: { retrie = super.retrie.override { ghc-exactprint = self.ghc-exactprint_1_8_0_0; }; })

(self: super: { websockets = super.websockets_0_13_0_0; })
(self: super: {
minio-hs = (pkgs.haskell.lib.overrideCabal super.minio-hs (_: {
patches = [
(pkgs.fetchpatch {
name = "use-crypoton-connection.patch";
url = "https://github.com/minio/minio-hs/commit/786cf1881f0b62b7539e63547e76afc3c1ade36a.patch";
sha256 = "sha256-zw0/jhKzShpqV1sUyxWTl73sQOzm6kA/yQOZ9n0L1Ag";
}) ];
})).override { connection = super.crypton-connection; };


smtp-mail = (pkgs.haskell.lib.overrideCabal super.smtp-mail (_: {
patches = [
(pkgs.fetchpatch {
url = "https://github.com/jhickner/smtp-mail/commit/4c724c80814ab1da7c37256a6c10e04c88b9af95.patch";
sha256 = "sha256-rCyY4rB/wLspeAbLw1jji5BykYFLnmTjLiUyNkiEXmw";
}) ];
})).override { connection = super.crypton-connection; };
})

# (self: super: { fourmolu_0_15_0_0 = super.fourmolu_0_15_0_0.override { hlint = self.ghc-exactprint_1_8_0_0; }; })
];
Expand Down

0 comments on commit cf84d70

Please sign in to comment.