Skip to content

Commit

Permalink
style fix
Browse files Browse the repository at this point in the history
  • Loading branch information
robx committed Jun 24, 2022
1 parent c0f018e commit 2bb7b96
Showing 1 changed file with 28 additions and 20 deletions.
48 changes: 28 additions & 20 deletions nix/overlays/haskell-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -69,32 +69,40 @@ let
{ });

hasql =
lib.dontCheck (prev.callCabal2nixWithOptions "hasql" (super.fetchgit {
url = "https://github.com/robx/hasql.git";
rev = "70d42b40e8b3b919e514deb3278f44177952f34d";
sha256 = "sha256-tsJnBDJSt3IdUnRncIRl4liYXhfXnn0goaNzPrdHHrM=";
}) "" {});
lib.dontCheck (prev.callCabal2nixWithOptions "hasql"
(super.fetchgit {
url = "https://github.com/robx/hasql.git";
rev = "70d42b40e8b3b919e514deb3278f44177952f34d";
sha256 = "sha256-tsJnBDJSt3IdUnRncIRl4liYXhfXnn0goaNzPrdHHrM=";
}) ""
{ });

postgresql-binary =
lib.dontCheck (prev.callCabal2nixWithOptions "postgresql-binary" (super.fetchgit {
url = "https://github.com/robx/postgresql-binary.git";
rev = "1d37dc578d194dd35a7c3e7c9162c5cc4bd72e49";
sha256 = "sha256-I+YsijiLddxFNC9hHmdHh6C5ChjsGNA13mfsHR0VtGw=";
}) "" {});
lib.dontCheck (prev.callCabal2nixWithOptions "postgresql-binary"
(super.fetchgit {
url = "https://github.com/robx/postgresql-binary.git";
rev = "1d37dc578d194dd35a7c3e7c9162c5cc4bd72e49";
sha256 = "sha256-I+YsijiLddxFNC9hHmdHh6C5ChjsGNA13mfsHR0VtGw=";
}) ""
{ });

postgresql-libpq =
lib.dontCheck (prev.callCabal2nixWithOptions "postgresql-libpq" (super.fetchgit {
url = "https://github.com/robx/postgresql-libpq.git";
rev = "5f79eb2d481041d7a949acd7bd8177e50dd60cd9";
sha256 = "sha256-1U+R5QVatrWbwfpPENMnPZFGRlHV7MNllj6cJFDBrGY=";
}) "" {});
lib.dontCheck (prev.callCabal2nixWithOptions "postgresql-libpq"
(super.fetchgit {
url = "https://github.com/robx/postgresql-libpq.git";
rev = "5f79eb2d481041d7a949acd7bd8177e50dd60cd9";
sha256 = "sha256-1U+R5QVatrWbwfpPENMnPZFGRlHV7MNllj6cJFDBrGY=";
}) ""
{ });

bytestring-strict-builder =
lib.dontCheck (prev.callCabal2nixWithOptions "bytestring-strict-builder" (super.fetchgit {
url = "https://github.com/robx/bytestring-strict-builder.git";
rev = "05aa1d6b73d65708e550cfeb23c53353855a05f2";
sha256 = "sha256-Kuse+dxddQMKzyAP5r16TBsqjVMpF1scUsX4G309p9s=";
}) "" {});
lib.dontCheck (prev.callCabal2nixWithOptions "bytestring-strict-builder"
(super.fetchgit {
url = "https://github.com/robx/bytestring-strict-builder.git";
rev = "05aa1d6b73d65708e550cfeb23c53353855a05f2";
sha256 = "sha256-Kuse+dxddQMKzyAP5r16TBsqjVMpF1scUsX4G309p9s=";
}) ""
{ });

# <name> =
# prev.callCabal2nixWithOptions "<name>" (super.fetchFromGitHub {
Expand Down

0 comments on commit 2bb7b96

Please sign in to comment.