Fix base32 override, sorry!

This commit is contained in:
Cale Gibbard 2023-02-08 12:25:07 -05:00
parent ffe35573b8
commit ec10835e7b
2 changed files with 4 additions and 3 deletions

View File

@ -12,6 +12,7 @@ library
, frontend
, obelisk-backend
, obelisk-route
, tahoe-chk
exposed-modules:
Backend
ghc-options: -Wall -Wredundant-constraints -Wincomplete-uni-patterns -Wincomplete-record-updates -O -fno-show-valid-hole-fits

View File

@ -37,8 +37,8 @@ project ./. ({ pkgs, hackGet, ... }: {
# We also ended up needing an override of the base32 library, which we obtain from Hackage.
base32 = self.callHackageDirect {
pkg = "base32";
ver = "0.2.2.0";
sha256 = "1qx7n2jyb9h1082434r90hfrjw5fab2j1yg0qzxh856fpksbh811";
};
ver = "0.2.1.0";
sha256 = "04glpmwp50qi29h8cb5j0w1rz0ww30nw4xgj2a3l7zh1gprhwj89";
} {};
};
})