Skip to content
Snippets Groups Projects
Commit 8a59df97 authored by Daniel Firth's avatar Daniel Firth
Browse files

bech32-th init at 1.1.1

parent 8d31438c
No related merge requests found
......@@ -124,6 +124,7 @@ let otherLibraries =
, callCardanoBase "base-deriving-via" "base-deriving-via"
, H.callHackage "base-prelude" "1.6.1"
, H.callHackage "bech32" "1.1.2"
, H.callHackage "bech32-th" "1.1.1"
, H.callHackage "bin" "0.1.2"
, callCardanoLedger "byron-spec-chain" "eras/byron/chain/executable-spec"
, callCardanoLedger
......
......@@ -29,6 +29,8 @@ final: prev: with pkgs.haskell.lib; {
bech32 = final.callPackage (./pkgs/bech32.nix) { };
bech32-th = final.callPackage (./pkgs/bech32-th.nix) { };
bin = final.callPackage (./pkgs/bin.nix) { };
byron-spec-chain = final.callPackage (./pkgs/byron-spec-chain.nix) { };
......
{ mkDerivation
, base
, bech32
, hspec
, hspec-discover
, lib
, template-haskell
, text
}:
mkDerivation {
pname = "bech32-th";
version = "1.1.1";
sha256 = "3346a2539bfafd2e4cb8ca775a0c4aeb5636f52af4a9b0a8c22478b393558814";
isLibrary = true;
isExecutable = false;
enableSeparateDataOutput = false;
libraryHaskellDepends = [ base bech32 template-haskell text ];
testHaskellDepends = [ base bech32 hspec template-haskell ];
testToolDepends = [ hspec-discover ];
enableLibraryProfiling = true;
enableExecutableProfiling = true;
doHaddock = false;
jailbreak = true;
doCheck = false;
doBenchmark = false;
hyperlinkSource = false;
homepage = "https://github.com/input-output-hk/bech32";
description = "Template Haskell extensions to the Bech32 library";
license = lib.licenses.asl20;
broken = false;
}
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment