Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
horizon-plutus
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
1
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
package-sets
horizon-plutus
Commits
ed2b46b2
Commit
ed2b46b2
authored
2 years ago
by
Max Tomago
Browse files
Options
Downloads
Patches
Plain Diff
cardano-ledger-shelley-ma: init at e95d4aa2d7e39c856e8b0aaae3610ffb2391ac19 from github:milloni
parent
a04791aa
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
manifest.dhall
+5
-0
5 additions, 0 deletions
manifest.dhall
overlay.nix
+2
-0
2 additions, 0 deletions
overlay.nix
pkgs/cardano-ledger-shelley-ma.nix
+67
-0
67 additions, 0 deletions
pkgs/cardano-ledger-shelley-ma.nix
with
74 additions
and
0 deletions
manifest.dhall
+
5
−
0
View file @
ed2b46b2
...
...
@@ -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"
...
...
This diff is collapsed.
Click to expand it.
overlay.nix
+
2
−
0
View file @
ed2b46b2
...
...
@@ -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
)
{
};
...
...
This diff is collapsed.
Click to expand it.
pkgs/cardano-ledger-shelley-ma.nix
0 → 100644
+
67
−
0
View file @
ed2b46b2
{
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
;
}
This diff is collapsed.
Click to expand it.
Preview
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment