Skip to content
Snippets Groups Projects
Commit be42c471 authored by Max Tomago's avatar Max Tomago
Browse files

base58-bytestring: init at 0.1.0

parent d8143189
Branches
No related merge requests found
......@@ -53,6 +53,7 @@ let callCardanoLedger
in [ callHackage "PyF" "0.11.0.0"
, callHackage "Unique" "0.4.7.9"
, callHackage "algebraic-graphs" "0.7"
, callHackage "base58-bytestring" "0.1.0"
, callHackage "base64-bytestring-type" "1.0.1"
, callCabal2nix
"base-deriving-via"
......
......@@ -9,6 +9,8 @@ final: prev: with pkgs.haskell.lib; {
base-deriving-via = prev.callPackage (./pkgs/base-deriving-via.nix) { };
base58-bytestring = prev.callPackage (./pkgs/base58-bytestring.nix) { };
base64-bytestring-type = prev.callPackage (./pkgs/base64-bytestring-type.nix) { };
bech32 = prev.callPackage (./pkgs/bech32.nix) { };
......
{ mkDerivation
, base
, bytestring
, criterion
, lib
, quickcheck-assertions
, quickcheck-instances
, tasty
, tasty-quickcheck
}:
mkDerivation {
pname = "base58-bytestring";
version = "0.1.0";
sha256 = "c2dbf598f3415053e12cca84b90fa7c0c1b02f3b784cce0157264baebf2d40d3";
isLibrary = true;
isExecutable = false;
enableSeparateDataOutput = false;
libraryHaskellDepends = [ base bytestring ];
testHaskellDepends = [
base
bytestring
quickcheck-assertions
quickcheck-instances
tasty
tasty-quickcheck
];
benchmarkHaskellDepends = [ base bytestring criterion ];
enableLibraryProfiling = false;
enableExecutableProfiling = false;
doHaddock = false;
jailbreak = true;
doCheck = false;
doBenchmark = false;
hyperlinkSource = false;
homepage = "https://bitbucket.org/s9gf4ult/base58-bytestring";
description = "Implementation of BASE58 transcoding for ByteStrings";
license = lib.licenses.publicDomain;
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