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

cardano-ledger-shelley-ma: init at e95d4aa2d7e39c856e8b0aaae3610ffb2391ac19 from github:milloni

parent a04791aa
No related merge requests found
......@@ -109,6 +109,11 @@ in [ callHackage "PyF" "0.11.0.0"
"https://github.com/milloni/cardano-ledger"
(Some "bc859395040abf075f4ca44b4ce8c221d2c4bb66")
(Some "eras/shelley/impl")
, callCabal2nix
"cardano-ledger-shelley-ma"
"https://github.com/milloni/cardano-ledger"
(Some "e95d4aa2d7e39c856e8b0aaae3610ffb2391ac19")
(Some "eras/shelley-ma/impl")
, callCabal2nix
"cardano-slotting"
"https://github.com/input-output-hk/cardano-base"
......
......@@ -39,6 +39,8 @@ final: prev: with pkgs.haskell.lib; {
cardano-ledger-shelley = prev.callPackage (./pkgs/cardano-ledger-shelley.nix) { };
cardano-ledger-shelley-ma = prev.callPackage (./pkgs/cardano-ledger-shelley-ma.nix) { };
cardano-prelude = prev.callPackage (./pkgs/cardano-prelude.nix) { };
cardano-prelude-test = prev.callPackage (./pkgs/cardano-prelude-test.nix) { };
......
{ mkDerivation
, base
, base16-bytestring
, bytestring
, cardano-binary
, cardano-crypto-class
, cardano-data
, cardano-ledger-core
, cardano-ledger-shelley
, cardano-slotting
, cardano-strict-containers
, cborg
, containers
, deepseq
, fetchgit
, groups
, lib
, microlens
, mtl
, nothunks
, primitive
, small-steps
, text
, transformers
, validation-selective
}:
mkDerivation {
pname = "cardano-ledger-shelley-ma";
version = "0.1.0.0";
src = fetchgit {
url = "https://github.com/milloni/cardano-ledger";
sha256 = "0qwq9ddsdq2kps5j1mpznxbh8lvq3qf54587kch1m0bya086bmxx";
rev = "e95d4aa2d7e39c856e8b0aaae3610ffb2391ac19";
fetchSubmodules = true;
};
postUnpack = "sourceRoot+=/eras/shelley-ma/impl/; echo source root reset to $sourceRoot";
libraryHaskellDepends = [
base
base16-bytestring
bytestring
cardano-binary
cardano-crypto-class
cardano-data
cardano-ledger-core
cardano-ledger-shelley
cardano-slotting
cardano-strict-containers
cborg
containers
deepseq
groups
microlens
mtl
nothunks
primitive
small-steps
text
transformers
validation-selective
];
doHaddock = false;
jailbreak = true;
doCheck = false;
hyperlinkSource = false;
description = "Shelley ledger with multiasset and time lock support";
license = lib.licenses.asl20;
}
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