From 55defea9127f028cc61d67c34cb47874187a7fc3 Mon Sep 17 00:00:00 2001 From: Seungheon Oh Date: Wed, 25 May 2022 23:31:02 -0500 Subject: [PATCH] Use Liqwid-Labs/plutarch - Removed `Utils.Value` -- not being used/better is provided with liqwid-plutarch-extra - uses `Liqwid-Labs/plutarch` - uses `Liqwid-Labs/plutarch-numeric` - uses `Liqwid-Labs/plutarch-safemoney` - uses `Liqwid-Labs/liqwid-plutarch-extra` --- .../Sample/Effect/GovernorMutation.hs | 5 +- agora-sample/Sample/Governor.hs | 2 +- agora-sample/Sample/Proposal.hs | 5 +- agora-sample/Sample/Shared.hs | 2 +- agora-sample/Sample/Stake.hs | 2 +- agora-scripts/Scripts.hs | 2 +- agora-spec/Spec/Proposal.hs | 2 +- agora.cabal | 8 +- agora/Agora/AuthorityToken.hs | 4 +- agora/Agora/Effect.hs | 2 +- agora/Agora/Effect/GovernorMutation.hs | 2 +- agora/Agora/Governor.hs | 15 +- agora/Agora/Governor/Scripts.hs | 13 +- agora/Agora/Proposal.hs | 3 +- agora/Agora/Proposal/Scripts.hs | 14 +- agora/Agora/Proposal/Time.hs | 4 +- agora/Agora/SafeMoney.hs | 2 +- agora/Agora/Stake.hs | 9 +- agora/Agora/Stake/Scripts.hs | 7 +- agora/Agora/Treasury.hs | 4 +- agora/Agora/Utils.hs | 9 +- agora/Agora/Utils/Value.hs | 93 - bench.csv | 28 +- flake.lock | 6644 ++++++++++++++++- flake.nix | 46 +- 25 files changed, 6520 insertions(+), 407 deletions(-) delete mode 100644 agora/Agora/Utils/Value.hs diff --git a/agora-sample/Sample/Effect/GovernorMutation.hs b/agora-sample/Sample/Effect/GovernorMutation.hs index 737783a..fe65403 100644 --- a/agora-sample/Sample/Effect/GovernorMutation.hs +++ b/agora-sample/Sample/Effect/GovernorMutation.hs @@ -23,10 +23,7 @@ import Agora.Proposal (ProposalId (..), ProposalThresholds (..)) -------------------------------------------------------------------------------- import Plutarch.Api.V1 (mkValidator, validatorHash) -import Plutarch.SafeMoney (Tagged (Tagged)) - --------------------------------------------------------------------------------- - +import Data.Tagged (Tagged (..)) import Plutus.V1.Ledger.Address (scriptHashAddress) import Plutus.V1.Ledger.Api ( Address, diff --git a/agora-sample/Sample/Governor.hs b/agora-sample/Sample/Governor.hs index 48329c0..e7d1871 100644 --- a/agora-sample/Sample/Governor.hs +++ b/agora-sample/Sample/Governor.hs @@ -15,7 +15,7 @@ module Sample.Governor ( -------------------------------------------------------------------------------- import Plutarch.Api.V1 (mkValidator, validatorHash) -import Plutarch.SafeMoney.Tagged +import Data.Tagged (Tagged(..), untag) -------------------------------------------------------------------------------- diff --git a/agora-sample/Sample/Proposal.hs b/agora-sample/Sample/Proposal.hs index 631dc9f..7e57216 100644 --- a/agora-sample/Sample/Proposal.hs +++ b/agora-sample/Sample/Proposal.hs @@ -20,7 +20,6 @@ module Sample.Proposal ( import Plutarch.Api.V1 ( validatorHash, ) -import Plutarch.SafeMoney (Tagged (Tagged), untag) -------------------------------------------------------------------------------- @@ -57,9 +56,7 @@ import Agora.Proposal ( ) import Agora.Proposal.Time (ProposalStartingTime (ProposalStartingTime), ProposalTimingConfig (..)) import Agora.Stake (ProposalLock (ProposalLock), Stake (..), StakeDatum (..)) - --------------------------------------------------------------------------------- - +import Data.Tagged (Tagged(..), untag) import Sample.Shared import Test.Util (closedBoundedInterval, datumPair, toDatumHash, updateMap) diff --git a/agora-sample/Sample/Shared.hs b/agora-sample/Sample/Shared.hs index 94801bf..d359d00 100644 --- a/agora-sample/Sample/Shared.hs +++ b/agora-sample/Sample/Shared.hs @@ -92,7 +92,7 @@ import Plutarch.Api.V1 ( mkValidator, validatorHash, ) -import Plutarch.SafeMoney +import Data.Tagged (Tagged (..)) import Plutus.V1.Ledger.Address (scriptHashAddress) import Plutus.V1.Ledger.Api ( Address (Address), diff --git a/agora-sample/Sample/Stake.hs b/agora-sample/Sample/Stake.hs index 723af00..4b3cf52 100644 --- a/agora-sample/Sample/Stake.hs +++ b/agora-sample/Sample/Stake.hs @@ -48,7 +48,7 @@ import Plutus.V1.Ledger.Value qualified as Value import Agora.SafeMoney (GTTag) import Agora.Stake import Agora.Stake.Scripts (stakeValidator) -import Plutarch.SafeMoney +import Data.Tagged (Tagged (..), untag) import Sample.Shared import Test.Util (datumPair, toDatumHash) diff --git a/agora-scripts/Scripts.hs b/agora-scripts/Scripts.hs index 0544a1c..34ecf47 100644 --- a/agora-scripts/Scripts.hs +++ b/agora-scripts/Scripts.hs @@ -30,7 +30,7 @@ import Data.Aeson qualified as Aeson import GHC.Generics qualified as GHC import Options (Options (..), parseOptions) import Plutarch.Api.V1 (mintingPolicySymbol, mkMintingPolicy) -import Plutarch.SafeMoney (Tagged) +import Data.Tagged (Tagged) import Plutus.V1.Ledger.Api (TxOutRef) import Plutus.V1.Ledger.Value (AssetClass, CurrencySymbol) import Plutus.V1.Ledger.Value qualified as Value diff --git a/agora-spec/Spec/Proposal.hs b/agora-spec/Spec/Proposal.hs index d4c6426..697ad13 100644 --- a/agora-spec/Spec/Proposal.hs +++ b/agora-spec/Spec/Proposal.hs @@ -39,7 +39,7 @@ import Agora.Stake ( ) import Agora.Stake.Scripts (stakeValidator) import Data.Default.Class (Default (def)) -import Plutarch.SafeMoney (Tagged (Tagged)) +import Data.Tagged (Tagged (Tagged)) import Plutus.V1.Ledger.Api (ScriptContext (..), ScriptPurpose (..)) import PlutusTx.AssocMap qualified as AssocMap import Sample.Proposal qualified as Proposal diff --git a/agora.cabal b/agora.cabal index b101fea..acaa9ec 100644 --- a/agora.cabal +++ b/agora.cabal @@ -23,6 +23,7 @@ common lang pprelude (PPrelude as Prelude) default-extensions: + PackageImports NoStarIsType BangPatterns BinaryLiterals @@ -97,8 +98,9 @@ common deps , generics-sop , plutarch , plutarch-extra + , liqwid-plutarch-extra , plutarch-numeric - , plutarch-safemoney + , plutarch-safe-money , plutus-core , plutus-ledger-api , plutus-tx @@ -108,6 +110,9 @@ common deps , serialise , template-haskell , text + , tagged + mixins: + common test-deps build-depends: @@ -147,7 +152,6 @@ library Agora.Stake.Scripts Agora.Treasury Agora.Utils - Agora.Utils.Value other-modules: Agora.Aeson.Orphans hs-source-dirs: agora diff --git a/agora/Agora/AuthorityToken.hs b/agora/Agora/AuthorityToken.hs index 06c5bb1..8a08105 100644 --- a/agora/Agora/AuthorityToken.hs +++ b/agora/Agora/AuthorityToken.hs @@ -25,8 +25,8 @@ import Plutarch.Api.V1 ( PTxOut (..), ) import Plutarch.Api.V1.AssocMap (PMap (PMap)) -import Plutarch.Api.V1.Extra (passetClass, passetClassValueOf) -import Plutarch.Api.V1.Value (PValue (PValue)) +import Plutarch.Api.V1.AssetClass (passetClass, passetClassValueOf) +import "plutarch" Plutarch.Api.V1.Value (PValue (PValue)) import Plutarch.Builtin (pforgetData) import Plutus.V1.Ledger.Value (AssetClass (AssetClass)) diff --git a/agora/Agora/Effect.hs b/agora/Agora/Effect.hs index c35ed55..beda8cb 100644 --- a/agora/Agora/Effect.hs +++ b/agora/Agora/Effect.hs @@ -10,7 +10,7 @@ module Agora.Effect (makeEffect) where import Agora.AuthorityToken (singleAuthorityTokenBurned) import Agora.Utils (tcassert, tclet, tcmatch, tctryFrom) import Plutarch.Api.V1 (PCurrencySymbol, PScriptPurpose (PSpending), PTxInfo, PTxOutRef, PValidator, PValue) -import Plutarch.TryFrom (PTryFrom) +import Plutarch.TryFrom () import Plutus.V1.Ledger.Value (CurrencySymbol) -------------------------------------------------------------------------------- diff --git a/agora/Agora/Effect/GovernorMutation.hs b/agora/Agora/Effect/GovernorMutation.hs index fb28e33..3c21efc 100644 --- a/agora/Agora/Effect/GovernorMutation.hs +++ b/agora/Agora/Effect/GovernorMutation.hs @@ -31,7 +31,7 @@ import Plutarch.Api.V1 ( PValidator, PValue, ) -import Plutarch.Api.V1.Extra (pvalueOf) +import "liqwid-plutarch-extra" Plutarch.Api.V1.Value (pvalueOf) import Plutarch.DataRepr ( DerivePConstantViaData (..), PDataFields, diff --git a/agora/Agora/Governor.hs b/agora/Agora/Governor.hs index a2d5940..cdd71e3 100644 --- a/agora/Agora/Governor.hs +++ b/agora/Agora/Governor.hs @@ -54,9 +54,12 @@ import Plutarch.DataRepr ( PIsDataReprInstances (PIsDataReprInstances), ) import Plutarch.Lift (PConstantDecl, PUnsafeLiftDecl (..)) -import Plutarch.SafeMoney (Tagged (..), puntag) +import Data.Tagged (Tagged (..)) +import Plutarch.Extra.Comonad (pextract) import Plutarch.TryFrom (PTryFrom (..)) import Plutarch.Unsafe (punsafeCoerce) +import Plutarch.SafeMoney (PDiscrete (..)) +import Plutarch.Extra.TermCont (pmatchC) -------------------------------------------------------------------------------- @@ -188,9 +191,13 @@ governorDatumValid = phoistAcyclic $ pletFields @'["execute", "draft", "vote"] $ pfield @"proposalThresholds" # datum - execute <- tclet $ puntag thresholds.execute - draft <- tclet $ puntag thresholds.draft - vote <- tclet $ puntag thresholds.vote + PDiscrete execute' <- pmatchC thresholds.execute + PDiscrete draft' <- pmatchC thresholds.draft + PDiscrete vote' <- pmatchC thresholds.vote + + execute <- tclet $ pextract # execute' + draft <- tclet $ pextract # draft' + vote <- tclet $ pextract # vote' pure $ foldr1 diff --git a/agora/Agora/Governor/Scripts.hs b/agora/Agora/Governor/Scripts.hs index fc4987d..3b22079 100644 --- a/agora/Agora/Governor/Scripts.hs +++ b/agora/Agora/Governor/Scripts.hs @@ -110,21 +110,23 @@ import Plutarch.Api.V1 ( mkValidator, validatorHash, ) -import Plutarch.Api.V1.Extra ( +import Plutarch.Api.V1.AssetClass ( passetClass, passetClassValueOf, ) -import Plutarch.Map.Extra ( +import Plutarch.Extra.Map ( pkeys, plookup, plookup', ) +import Plutarch.Extra.Comonad ( pextract) import Plutarch.SafeMoney ( PDiscrete, - puntag, pvalueDiscrete', ) -import Plutarch.TryFrom (ptryFrom) +import Plutarch.TryFrom () +import Plutarch.SafeMoney (PDiscrete (..)) +import Plutarch.Extra.TermCont (pmatchC) -------------------------------------------------------------------------------- @@ -629,8 +631,9 @@ governorValidator gov = winner <- tclet $ mustBePJust # "No winning outcome" # maybeWinner + PDiscrete minimumVotes' <- pmatchC $ pfromData $ pfield @"execute" # proposalInputDatumF.thresholds let highestVote = pfromData $ psndBuiltin # winner - minimumVotes = puntag $ pfromData $ pfield @"execute" # proposalInputDatumF.thresholds + minimumVotes = pextract # minimumVotes' tcassert "Higgest vote doesn't meet the minimum requirement" $ minimumVotes #<= highestVote diff --git a/agora/Agora/Proposal.hs b/agora/Agora/Proposal.hs index b120216..ef39e39 100644 --- a/agora/Agora/Proposal.hs +++ b/agora/Agora/Proposal.hs @@ -57,7 +57,8 @@ import Plutarch.Lift ( PConstantDecl, PUnsafeLiftDecl (..), ) -import Plutarch.SafeMoney (PDiscrete, Tagged) +import Plutarch.SafeMoney (PDiscrete) +import Data.Tagged (Tagged) import Plutarch.TryFrom (PTryFrom (PTryFromExcess, ptryFrom')) import Plutarch.Unsafe (punsafeCoerce) import Plutus.V1.Ledger.Api (DatumHash, PubKeyHash, ValidatorHash) diff --git a/agora/Agora/Proposal/Scripts.hs b/agora/Agora/Proposal/Scripts.hs index 0b0ceab..b04b8d9 100644 --- a/agora/Agora/Proposal/Scripts.hs +++ b/agora/Agora/Proposal/Scripts.hs @@ -44,10 +44,13 @@ import Plutarch.Api.V1 ( PTxInfo (PTxInfo), PValidator, ) -import Plutarch.Api.V1.Extra (passetClass, passetClassValueOf) -import Plutarch.Map.Extra (plookup) -import Plutarch.SafeMoney (puntag) +import Plutarch.Api.V1.AssetClass (passetClass, passetClassValueOf) +import Plutarch.Extra.Map (plookup) +import Plutarch.Extra.Comonad (pextract) +import Plutarch.SafeMoney (PDiscrete (..)) import Plutus.V1.Ledger.Value (AssetClass (AssetClass)) +import Plutarch.Extra.TermCont (pmatchC) + {- | Policy for Proposals. @@ -253,8 +256,9 @@ proposalValidator proposal = PProposalVotes $ pupdate # plam - ( \votes -> - pcon $ PJust $ votes + (puntag stakeInF.stakedAmount) + ( \votes -> unTermCont $ do + PDiscrete v <- pmatchC stakeInF.stakedAmount + pure $ pcon $ PJust $ votes + (pextract # v) ) # voteFor # m diff --git a/agora/Agora/Proposal/Time.hs b/agora/Agora/Proposal/Time.hs index e8d11a0..c524546 100644 --- a/agora/Agora/Proposal/Time.hs +++ b/agora/Agora/Proposal/Time.hs @@ -50,7 +50,7 @@ import Plutarch.Lift ( PConstantDecl, PUnsafeLiftDecl (..), ) -import Plutarch.Numeric (AdditiveSemigroup ((+))) +import Plutarch.Numeric.Additive (AdditiveSemigroup ((+))) import Plutarch.Unsafe (punsafeCoerce) import Plutus.V1.Ledger.Time (POSIXTime) import PlutusTx qualified @@ -259,7 +259,7 @@ isDraftPeriod :: ) isDraftPeriod = phoistAcyclic $ plam $ \config s' -> pmatch s' $ \(PProposalStartingTime s) -> - proposalTimeWithin # s # (s + pfield @"draftTime" # config) + proposalTimeWithin # s # (s + (pfield @"draftTime" # config)) -- | True if the 'PProposalTime' is in the voting period. isVotingPeriod :: diff --git a/agora/Agora/SafeMoney.hs b/agora/Agora/SafeMoney.hs index 2a469ea..a579f0d 100644 --- a/agora/Agora/SafeMoney.hs +++ b/agora/Agora/SafeMoney.hs @@ -18,7 +18,7 @@ module Agora.SafeMoney ( import Plutus.V1.Ledger.Value (AssetClass (AssetClass)) -import Plutarch.SafeMoney +import Data.Tagged ( Tagged(Tagged) ) -------------------------------------------------------------------------------- -- Tags diff --git a/agora/Agora/Stake.hs b/agora/Agora/Stake.hs index e62e20a..750f99a 100644 --- a/agora/Agora/Stake.hs +++ b/agora/Agora/Stake.hs @@ -66,12 +66,9 @@ import Agora.Utils ( tcmatch, ) import Control.Applicative (Const) -import Plutarch.Api.V1.Extra (PAssetClass, passetClassValueOf) -import Plutarch.Numeric () -import Plutarch.SafeMoney ( - PDiscrete, - Tagged (..), - ) +import Plutarch.Api.V1.AssetClass (PAssetClass, passetClassValueOf) +import Data.Tagged (Tagged (..) ) +import Plutarch.SafeMoney (PDiscrete) import Plutarch.TryFrom (PTryFrom (PTryFromExcess, ptryFrom')) -------------------------------------------------------------------------------- diff --git a/agora/Agora/Stake/Scripts.hs b/agora/Agora/Stake/Scripts.hs index b333aae..1e27e18 100644 --- a/agora/Agora/Stake/Scripts.hs +++ b/agora/Agora/Stake/Scripts.hs @@ -37,14 +37,13 @@ import Plutarch.Api.V1 ( mintingPolicySymbol, mkMintingPolicy, ) -import Plutarch.Api.V1.Extra (passetClass, passetClassValueOf, pvalueOf) +import Plutarch.Api.V1.AssetClass (passetClass, passetClassValueOf, pvalueOf) import Plutarch.Internal (punsafeCoerce) -import Plutarch.Numeric +import Plutarch.Numeric.Additive ( AdditiveMonoid(zero), AdditiveSemigroup((+)) ) +import Data.Tagged (Tagged (..), untag) import Plutarch.SafeMoney ( - Tagged (..), pdiscreteValue', pvalueDiscrete', - untag, ) import Plutus.V1.Ledger.Value (AssetClass (AssetClass)) import Prelude hiding (Num (..)) diff --git a/agora/Agora/Treasury.hs b/agora/Agora/Treasury.hs index 475c936..1046065 100644 --- a/agora/Agora/Treasury.hs +++ b/agora/Agora/Treasury.hs @@ -16,13 +16,13 @@ import GHC.Generics qualified as GHC import Generics.SOP import Plutarch.Api.V1 (PValidator) import Plutarch.Api.V1.Contexts (PScriptPurpose (PMinting)) -import Plutarch.Api.V1.Value (PValue) +import "plutarch" Plutarch.Api.V1.Value (PValue) import Plutarch.DataRepr ( DerivePConstantViaData (..), PIsDataReprInstances (PIsDataReprInstances), ) import Plutarch.Lift (PConstantDecl (..), PLifted (..), PUnsafeLiftDecl) -import Plutarch.TryFrom (PTryFrom) +import Plutarch.TryFrom () import Plutus.V1.Ledger.Value (CurrencySymbol) import PlutusTx qualified diff --git a/agora/Agora/Utils.hs b/agora/Agora/Utils.hs index a3faa17..0f697ab 100644 --- a/agora/Agora/Utils.hs +++ b/agora/Agora/Utils.hs @@ -97,12 +97,13 @@ import Plutarch.Api.V1 ( mkMintingPolicy, ) import Plutarch.Api.V1.AssocMap (PMap (PMap)) -import Plutarch.Api.V1.Extra (PAssetClass, passetClassValueOf, pvalueOf) -import Plutarch.Api.V1.Value (PValue (PValue)) +import Plutarch.Api.V1.AssetClass (PAssetClass, passetClassValueOf, pvalueOf) +import "plutarch" Plutarch.Api.V1.Value (PValue (PValue)) import Plutarch.Builtin (pforgetData, ppairDataBuiltin) -import Plutarch.Map.Extra (pkeys) import Plutarch.Reducible (Reducible (Reduce)) -import Plutarch.TryFrom (PTryFrom (PTryFromExcess), ptryFrom) +import Plutarch.TryFrom (PTryFrom (PTryFromExcess)) +import Plutarch.Extra.Map (pkeys) + -------------------------------------------------------------------------------- -- TermCont-based combinators. Some of these will live in plutarch eventually. diff --git a/agora/Agora/Utils/Value.hs b/agora/Agora/Utils/Value.hs deleted file mode 100644 index 7545b20..0000000 --- a/agora/Agora/Utils/Value.hs +++ /dev/null @@ -1,93 +0,0 @@ -{-# OPTIONS_GHC -Wno-unused-imports #-} -{-# OPTIONS_GHC -Wno-unused-top-binds #-} - -module Agora.Utils.Value (pgeq, pleq, pgt, plt) where - -import Agora.Utils (tcmatch) -import Plutarch.Api.V1.AssocMap (PMap (PMap)) -import Plutarch.Api.V1.These (PTheseData (..)) -import Plutarch.Api.V1.Tuple (ptupleFromBuiltin) -import Plutarch.Api.V1.Value (PCurrencySymbol, PTokenName, PValue) -import Plutarch.Lift (PUnsafeLiftDecl) -import Plutarch.List (pconvertLists) -import Plutarch.Monadic qualified as P - -punionVal :: - Term - s - ( PValue - :--> PValue - :--> PMap - PCurrencySymbol - (PMap PTokenName (PTheseData PInteger PInteger)) - ) -punionVal = undefined - --- | Determines if a condition is true for all values in a map. -pmapAll :: - (PUnsafeLiftDecl v, PIsData v) => - Term s ((v :--> PBool) :--> PMap k v :--> PBool) -pmapAll = plam $ \f m -> unTermCont $ do - PMap builtinMap <- tcmatch m - - let getV = plam $ \bip -> - let tuple = pfromData $ ptupleFromBuiltin (pdata bip) - in pfromData $ pfield @"_1" # tuple - - let vs = pmap # getV # builtinMap - pure $ pall # f # vs - -pcheckPred :: - forall {s :: S}. - Term - s - ( (PTheseData PInteger PInteger :--> PBool) - :--> PValue - :--> PValue - :--> PBool - ) -pcheckPred = plam $ \_f _l _r -> undefined - --- let inner :: Term s (PMap PTokenName (PTheseData PInteger PInteger) :--> PBool) --- inner = pmapAll # f --- pmapAll # inner # (punionVal # l # r) - -pcheckBinRel :: - forall {s :: S}. - Term - s - ( (PInteger :--> PInteger :--> PBool) - :--> PValue - :--> PValue - :--> PBool - ) -pcheckBinRel = plam $ \f l r -> - let unThese :: Term s (PTheseData PInteger PInteger :--> PBool) - unThese = plam $ \k' -> - pmatch k' $ \case - PDThis r -> f # (pfield @"_0" # r) # 0 - PDThat r -> f # 0 # (pfield @"_0" # r) - PDThese r -> f # (pfield @"_0" # r) # (pfield @"_1" # r) - in pcheckPred # unThese # l # r - --- | Establishes if a value is less than or equal to another. -pleq :: Term s (PValue :--> PValue :--> PBool) -pleq = plam $ \v0 v1 -> (pcheckBinRel # pleq') # v0 # v1 - -pleq' :: Term s (PInteger :--> PInteger :--> PBool) -pleq' = plam $ \m n -> m #<= n - --- | Establishes if a value is strictly less than another. -plt :: Term s (PValue :--> PValue :--> PBool) -plt = plam $ \v0 v1 -> (pcheckBinRel # plt') # v0 # v1 - -plt' :: Term s (PInteger :--> PInteger :--> PBool) -plt' = plam $ \m n -> m #< n - --- | Establishes if a value is greater than or equal to another. -pgeq :: Term s (PValue :--> PValue :--> PBool) -pgeq = plam $ \v0 v1 -> pnot #$ plt # v0 # v1 - --- | Establishes if a value is strictly greater than another. -pgt :: Term s (PValue :--> PValue :--> PBool) -pgt = plam $ \v0 v1 -> pnot #$ pleq # v0 # v1 diff --git a/bench.csv b/bench.csv index ab8954d..904b717 100644 --- a/bench.csv +++ b/bench.csv @@ -2,22 +2,22 @@ name,cpu,mem,size Agora/Effects/Treasury Withdrawal Effect/effect/Simple,340268715,724428,3050 Agora/Effects/Treasury Withdrawal Effect/effect/Simple with multiple treasuries ,570029812,1211300,3377 Agora/Effects/Treasury Withdrawal Effect/effect/Mixed Assets,502351827,1071087,3242 -Agora/Effects/Governor Mutation Effect/validator/valid new governor datum/governor validator should pass,103651824,228328,7681 -Agora/Effects/Governor Mutation Effect/validator/valid new governor datum/effect validator should pass,126986096,263635,3357 -Agora/Stake/policy/stakeCreation,60250773,128585,2144 -Agora/Stake/validator/stakeDepositWithdraw deposit,275919558,599033,4063 -Agora/Stake/validator/stakeDepositWithdraw withdraw,275919558,599033,4055 -Agora/Proposal/policy/proposalCreation,34571405,70066,1585 -Agora/Proposal/validator/cosignature/proposal,240007066,509127,4892 -Agora/Proposal/validator/cosignature/stake,185913543,402497,4600 -Agora/Proposal/validator/voting/proposal,238383906,489848,4900 -Agora/Proposal/validator/voting/stake,153804848,328239,4653 +Agora/Effects/Governor Mutation Effect/validator/valid new governor datum/governor validator should pass,103830462,228928,7628 +Agora/Effects/Governor Mutation Effect/validator/valid new governor datum/effect validator should pass,127968605,266935,3358 +Agora/Stake/policy/stakeCreation,59776675,126049,2116 +Agora/Stake/validator/stakeDepositWithdraw deposit,276249331,599197,4024 +Agora/Stake/validator/stakeDepositWithdraw withdraw,276249331,599197,4016 +Agora/Proposal/policy/proposalCreation,34784356,68894,1523 +Agora/Proposal/validator/cosignature/proposal,241204796,510319,4812 +Agora/Proposal/validator/cosignature/stake,186332635,402961,4561 +Agora/Proposal/validator/voting/proposal,239645722,489368,4820 +Agora/Proposal/validator/voting/stake,154223940,328703,4614 Agora/AuthorityToken/singleAuthorityTokenBurned/Correct simple,25177457,55883,806 Agora/AuthorityToken/singleAuthorityTokenBurned/Correct many inputs,40266637,88241,900 Agora/Treasury/Validator/Positive/Allows for effect changes,37343572,79744,1841 Agora/AuthorityToken/singleAuthorityTokenBurned/Correct simple,25177457,55883,806 Agora/AuthorityToken/singleAuthorityTokenBurned/Correct many inputs,40266637,88241,900 -Agora/Governor/policy/GST minting,57648280,119961,1851 -Agora/Governor/validator/proposal creation,329287002,679689,8196 -Agora/Governor/validator/GATs minting,430385143,929607,8319 -Agora/Governor/validator/mutate governor state,100840784,222602,7738 +Agora/Governor/policy/GST minting,57978053,120125,1833 +Agora/Governor/validator/proposal creation,330344593,681815,8143 +Agora/Governor/validator/GATs minting,431952116,934409,8266 +Agora/Governor/validator/mutate governor state,101019422,223202,7685 diff --git a/flake.lock b/flake.lock index 910ca2e..5152d02 100644 --- a/flake.lock +++ b/flake.lock @@ -64,6 +64,86 @@ "type": "github" } }, + "HTTP_5": { + "flake": false, + "locked": { + "lastModified": 1451647621, + "narHash": "sha256-oHIyw3x0iKBexEo49YeUDV1k74ZtyYKGR2gNJXXRxts=", + "owner": "phadej", + "repo": "HTTP", + "rev": "9bc0996d412fef1787449d841277ef663ad9a915", + "type": "github" + }, + "original": { + "owner": "phadej", + "repo": "HTTP", + "type": "github" + } + }, + "HTTP_6": { + "flake": false, + "locked": { + "lastModified": 1451647621, + "narHash": "sha256-oHIyw3x0iKBexEo49YeUDV1k74ZtyYKGR2gNJXXRxts=", + "owner": "phadej", + "repo": "HTTP", + "rev": "9bc0996d412fef1787449d841277ef663ad9a915", + "type": "github" + }, + "original": { + "owner": "phadej", + "repo": "HTTP", + "type": "github" + } + }, + "HTTP_7": { + "flake": false, + "locked": { + "lastModified": 1451647621, + "narHash": "sha256-oHIyw3x0iKBexEo49YeUDV1k74ZtyYKGR2gNJXXRxts=", + "owner": "phadej", + "repo": "HTTP", + "rev": "9bc0996d412fef1787449d841277ef663ad9a915", + "type": "github" + }, + "original": { + "owner": "phadej", + "repo": "HTTP", + "type": "github" + } + }, + "HTTP_8": { + "flake": false, + "locked": { + "lastModified": 1451647621, + "narHash": "sha256-oHIyw3x0iKBexEo49YeUDV1k74ZtyYKGR2gNJXXRxts=", + "owner": "phadej", + "repo": "HTTP", + "rev": "9bc0996d412fef1787449d841277ef663ad9a915", + "type": "github" + }, + "original": { + "owner": "phadej", + "repo": "HTTP", + "type": "github" + } + }, + "HTTP_9": { + "flake": false, + "locked": { + "lastModified": 1451647621, + "narHash": "sha256-oHIyw3x0iKBexEo49YeUDV1k74ZtyYKGR2gNJXXRxts=", + "owner": "phadej", + "repo": "HTTP", + "rev": "9bc0996d412fef1787449d841277ef663ad9a915", + "type": "github" + }, + "original": { + "owner": "phadej", + "repo": "HTTP", + "type": "github" + } + }, "Shrinker": { "flake": false, "locked": { @@ -80,6 +160,86 @@ "type": "github" } }, + "Shrinker_2": { + "flake": false, + "locked": { + "lastModified": 1642430208, + "narHash": "sha256-tfWyB7zCLzncwRpyl7eUOzuOBbg9KLu6sxSxRaFlOug=", + "owner": "Plutonomicon", + "repo": "Shrinker", + "rev": "0e60707996b876c7bd23a348f54545217ce2e556", + "type": "github" + }, + "original": { + "owner": "Plutonomicon", + "repo": "Shrinker", + "type": "github" + } + }, + "Shrinker_3": { + "flake": false, + "locked": { + "lastModified": 1642430208, + "narHash": "sha256-tfWyB7zCLzncwRpyl7eUOzuOBbg9KLu6sxSxRaFlOug=", + "owner": "Plutonomicon", + "repo": "Shrinker", + "rev": "0e60707996b876c7bd23a348f54545217ce2e556", + "type": "github" + }, + "original": { + "owner": "Plutonomicon", + "repo": "Shrinker", + "type": "github" + } + }, + "Shrinker_4": { + "flake": false, + "locked": { + "lastModified": 1642430208, + "narHash": "sha256-tfWyB7zCLzncwRpyl7eUOzuOBbg9KLu6sxSxRaFlOug=", + "owner": "Plutonomicon", + "repo": "Shrinker", + "rev": "0e60707996b876c7bd23a348f54545217ce2e556", + "type": "github" + }, + "original": { + "owner": "Plutonomicon", + "repo": "Shrinker", + "type": "github" + } + }, + "Shrinker_5": { + "flake": false, + "locked": { + "lastModified": 1642430208, + "narHash": "sha256-tfWyB7zCLzncwRpyl7eUOzuOBbg9KLu6sxSxRaFlOug=", + "owner": "Plutonomicon", + "repo": "Shrinker", + "rev": "0e60707996b876c7bd23a348f54545217ce2e556", + "type": "github" + }, + "original": { + "owner": "Plutonomicon", + "repo": "Shrinker", + "type": "github" + } + }, + "Shrinker_6": { + "flake": false, + "locked": { + "lastModified": 1642430208, + "narHash": "sha256-tfWyB7zCLzncwRpyl7eUOzuOBbg9KLu6sxSxRaFlOug=", + "owner": "Plutonomicon", + "repo": "Shrinker", + "rev": "0e60707996b876c7bd23a348f54545217ce2e556", + "type": "github" + }, + "original": { + "owner": "Plutonomicon", + "repo": "Shrinker", + "type": "github" + } + }, "apropos": { "inputs": { "flake-compat": "flake-compat", @@ -171,10 +331,10 @@ "flake": false, "locked": { "lastModified": 1603716527, - "narHash": "sha256-sDbrmur9Zfp4mPKohCD8IDZfXJ0Tjxpmr2R+kg5PpSY=", + "narHash": "sha256-X0TFfdD4KZpwl0Zr6x+PLxUt/VyKQfX7ylXHdmZIL+w=", "owner": "haskell", "repo": "cabal", - "rev": "94aaa8e4720081f9c75497e2735b90f6a819b08e", + "rev": "48bf10787e27364730dd37a42b603cee8d6af7ee", "type": "github" }, "original": { @@ -201,6 +361,91 @@ "type": "github" } }, + "cabal-32_5": { + "flake": false, + "locked": { + "lastModified": 1603716527, + "narHash": "sha256-X0TFfdD4KZpwl0Zr6x+PLxUt/VyKQfX7ylXHdmZIL+w=", + "owner": "haskell", + "repo": "cabal", + "rev": "48bf10787e27364730dd37a42b603cee8d6af7ee", + "type": "github" + }, + "original": { + "owner": "haskell", + "ref": "3.2", + "repo": "cabal", + "type": "github" + } + }, + "cabal-32_6": { + "flake": false, + "locked": { + "lastModified": 1603716527, + "narHash": "sha256-X0TFfdD4KZpwl0Zr6x+PLxUt/VyKQfX7ylXHdmZIL+w=", + "owner": "haskell", + "repo": "cabal", + "rev": "48bf10787e27364730dd37a42b603cee8d6af7ee", + "type": "github" + }, + "original": { + "owner": "haskell", + "ref": "3.2", + "repo": "cabal", + "type": "github" + } + }, + "cabal-32_7": { + "flake": false, + "locked": { + "lastModified": 1603716527, + "narHash": "sha256-X0TFfdD4KZpwl0Zr6x+PLxUt/VyKQfX7ylXHdmZIL+w=", + "owner": "haskell", + "repo": "cabal", + "rev": "48bf10787e27364730dd37a42b603cee8d6af7ee", + "type": "github" + }, + "original": { + "owner": "haskell", + "ref": "3.2", + "repo": "cabal", + "type": "github" + } + }, + "cabal-32_8": { + "flake": false, + "locked": { + "lastModified": 1603716527, + "narHash": "sha256-X0TFfdD4KZpwl0Zr6x+PLxUt/VyKQfX7ylXHdmZIL+w=", + "owner": "haskell", + "repo": "cabal", + "rev": "48bf10787e27364730dd37a42b603cee8d6af7ee", + "type": "github" + }, + "original": { + "owner": "haskell", + "ref": "3.2", + "repo": "cabal", + "type": "github" + } + }, + "cabal-32_9": { + "flake": false, + "locked": { + "lastModified": 1603716527, + "narHash": "sha256-sDbrmur9Zfp4mPKohCD8IDZfXJ0Tjxpmr2R+kg5PpSY=", + "owner": "haskell", + "repo": "cabal", + "rev": "94aaa8e4720081f9c75497e2735b90f6a819b08e", + "type": "github" + }, + "original": { + "owner": "haskell", + "ref": "3.2", + "repo": "cabal", + "type": "github" + } + }, "cabal-34": { "flake": false, "locked": { @@ -238,11 +483,11 @@ "cabal-34_3": { "flake": false, "locked": { - "lastModified": 1622475795, - "narHash": "sha256-chwTL304Cav+7p38d9mcb+egABWmxo2Aq+xgVBgEb/U=", + "lastModified": 1640353650, + "narHash": "sha256-N1t6M3/wqj90AEdRkeC8i923gQYUpzSr8b40qVOZ1Rk=", "owner": "haskell", "repo": "cabal", - "rev": "b086c1995cdd616fc8d91f46a21e905cc50a1049", + "rev": "942639c18c0cd8ec53e0a6f8d120091af35312cd", "type": "github" }, "original": { @@ -269,6 +514,91 @@ "type": "github" } }, + "cabal-34_5": { + "flake": false, + "locked": { + "lastModified": 1640353650, + "narHash": "sha256-N1t6M3/wqj90AEdRkeC8i923gQYUpzSr8b40qVOZ1Rk=", + "owner": "haskell", + "repo": "cabal", + "rev": "942639c18c0cd8ec53e0a6f8d120091af35312cd", + "type": "github" + }, + "original": { + "owner": "haskell", + "ref": "3.4", + "repo": "cabal", + "type": "github" + } + }, + "cabal-34_6": { + "flake": false, + "locked": { + "lastModified": 1640353650, + "narHash": "sha256-N1t6M3/wqj90AEdRkeC8i923gQYUpzSr8b40qVOZ1Rk=", + "owner": "haskell", + "repo": "cabal", + "rev": "942639c18c0cd8ec53e0a6f8d120091af35312cd", + "type": "github" + }, + "original": { + "owner": "haskell", + "ref": "3.4", + "repo": "cabal", + "type": "github" + } + }, + "cabal-34_7": { + "flake": false, + "locked": { + "lastModified": 1640353650, + "narHash": "sha256-N1t6M3/wqj90AEdRkeC8i923gQYUpzSr8b40qVOZ1Rk=", + "owner": "haskell", + "repo": "cabal", + "rev": "942639c18c0cd8ec53e0a6f8d120091af35312cd", + "type": "github" + }, + "original": { + "owner": "haskell", + "ref": "3.4", + "repo": "cabal", + "type": "github" + } + }, + "cabal-34_8": { + "flake": false, + "locked": { + "lastModified": 1640353650, + "narHash": "sha256-N1t6M3/wqj90AEdRkeC8i923gQYUpzSr8b40qVOZ1Rk=", + "owner": "haskell", + "repo": "cabal", + "rev": "942639c18c0cd8ec53e0a6f8d120091af35312cd", + "type": "github" + }, + "original": { + "owner": "haskell", + "ref": "3.4", + "repo": "cabal", + "type": "github" + } + }, + "cabal-34_9": { + "flake": false, + "locked": { + "lastModified": 1622475795, + "narHash": "sha256-chwTL304Cav+7p38d9mcb+egABWmxo2Aq+xgVBgEb/U=", + "owner": "haskell", + "repo": "cabal", + "rev": "b086c1995cdd616fc8d91f46a21e905cc50a1049", + "type": "github" + }, + "original": { + "owner": "haskell", + "ref": "3.4", + "repo": "cabal", + "type": "github" + } + }, "cabal-36": { "flake": false, "locked": { @@ -289,11 +619,11 @@ "cabal-36_2": { "flake": false, "locked": { - "lastModified": 1640163203, - "narHash": "sha256-TwDWP2CffT0j40W6zr0J1Qbu+oh3nsF1lUx9446qxZM=", + "lastModified": 1641652457, + "narHash": "sha256-BlFPKP4C4HRUJeAbdembX1Rms1LD380q9s0qVDeoAak=", "owner": "haskell", "repo": "cabal", - "rev": "ecf418050c1821f25e2e218f1be94c31e0465df1", + "rev": "f27667f8ec360c475027dcaee0138c937477b070", "type": "github" }, "original": { @@ -320,6 +650,74 @@ "type": "github" } }, + "cabal-36_4": { + "flake": false, + "locked": { + "lastModified": 1641652457, + "narHash": "sha256-BlFPKP4C4HRUJeAbdembX1Rms1LD380q9s0qVDeoAak=", + "owner": "haskell", + "repo": "cabal", + "rev": "f27667f8ec360c475027dcaee0138c937477b070", + "type": "github" + }, + "original": { + "owner": "haskell", + "ref": "3.6", + "repo": "cabal", + "type": "github" + } + }, + "cabal-36_5": { + "flake": false, + "locked": { + "lastModified": 1641652457, + "narHash": "sha256-BlFPKP4C4HRUJeAbdembX1Rms1LD380q9s0qVDeoAak=", + "owner": "haskell", + "repo": "cabal", + "rev": "f27667f8ec360c475027dcaee0138c937477b070", + "type": "github" + }, + "original": { + "owner": "haskell", + "ref": "3.6", + "repo": "cabal", + "type": "github" + } + }, + "cabal-36_6": { + "flake": false, + "locked": { + "lastModified": 1641652457, + "narHash": "sha256-BlFPKP4C4HRUJeAbdembX1Rms1LD380q9s0qVDeoAak=", + "owner": "haskell", + "repo": "cabal", + "rev": "f27667f8ec360c475027dcaee0138c937477b070", + "type": "github" + }, + "original": { + "owner": "haskell", + "ref": "3.6", + "repo": "cabal", + "type": "github" + } + }, + "cabal-36_7": { + "flake": false, + "locked": { + "lastModified": 1641652457, + "narHash": "sha256-BlFPKP4C4HRUJeAbdembX1Rms1LD380q9s0qVDeoAak=", + "owner": "haskell", + "repo": "cabal", + "rev": "f27667f8ec360c475027dcaee0138c937477b070", + "type": "github" + }, + "original": { + "owner": "haskell", + "ref": "3.6", + "repo": "cabal", + "type": "github" + } + }, "cardano-base": { "flake": false, "locked": { @@ -336,6 +734,86 @@ "type": "github" } }, + "cardano-base_2": { + "flake": false, + "locked": { + "lastModified": 1638456794, + "narHash": "sha256-0KAO6dWqupJzRyjWjAFLZrt0hA6pozeKsDv1Fnysib8=", + "owner": "input-output-hk", + "repo": "cardano-base", + "rev": "4fae3f0149fd8925be94707d3ae0e36c0d67bd58", + "type": "github" + }, + "original": { + "owner": "input-output-hk", + "repo": "cardano-base", + "type": "github" + } + }, + "cardano-base_3": { + "flake": false, + "locked": { + "lastModified": 1638456794, + "narHash": "sha256-0KAO6dWqupJzRyjWjAFLZrt0hA6pozeKsDv1Fnysib8=", + "owner": "input-output-hk", + "repo": "cardano-base", + "rev": "4fae3f0149fd8925be94707d3ae0e36c0d67bd58", + "type": "github" + }, + "original": { + "owner": "input-output-hk", + "repo": "cardano-base", + "type": "github" + } + }, + "cardano-base_4": { + "flake": false, + "locked": { + "lastModified": 1638456794, + "narHash": "sha256-0KAO6dWqupJzRyjWjAFLZrt0hA6pozeKsDv1Fnysib8=", + "owner": "input-output-hk", + "repo": "cardano-base", + "rev": "4fae3f0149fd8925be94707d3ae0e36c0d67bd58", + "type": "github" + }, + "original": { + "owner": "input-output-hk", + "repo": "cardano-base", + "type": "github" + } + }, + "cardano-base_5": { + "flake": false, + "locked": { + "lastModified": 1638456794, + "narHash": "sha256-0KAO6dWqupJzRyjWjAFLZrt0hA6pozeKsDv1Fnysib8=", + "owner": "input-output-hk", + "repo": "cardano-base", + "rev": "4fae3f0149fd8925be94707d3ae0e36c0d67bd58", + "type": "github" + }, + "original": { + "owner": "input-output-hk", + "repo": "cardano-base", + "type": "github" + } + }, + "cardano-base_6": { + "flake": false, + "locked": { + "lastModified": 1638456794, + "narHash": "sha256-0KAO6dWqupJzRyjWjAFLZrt0hA6pozeKsDv1Fnysib8=", + "owner": "input-output-hk", + "repo": "cardano-base", + "rev": "4fae3f0149fd8925be94707d3ae0e36c0d67bd58", + "type": "github" + }, + "original": { + "owner": "input-output-hk", + "repo": "cardano-base", + "type": "github" + } + }, "cardano-crypto": { "flake": false, "locked": { @@ -353,6 +831,91 @@ "type": "github" } }, + "cardano-crypto_2": { + "flake": false, + "locked": { + "lastModified": 1621376239, + "narHash": "sha256-oxIOVlgm07FAEmgGRF1C2me9TXqVxQulEOcJ22zpTRs=", + "owner": "input-output-hk", + "repo": "cardano-crypto", + "rev": "07397f0e50da97eaa0575d93bee7ac4b2b2576ec", + "type": "github" + }, + "original": { + "owner": "input-output-hk", + "repo": "cardano-crypto", + "rev": "07397f0e50da97eaa0575d93bee7ac4b2b2576ec", + "type": "github" + } + }, + "cardano-crypto_3": { + "flake": false, + "locked": { + "lastModified": 1621376239, + "narHash": "sha256-oxIOVlgm07FAEmgGRF1C2me9TXqVxQulEOcJ22zpTRs=", + "owner": "input-output-hk", + "repo": "cardano-crypto", + "rev": "07397f0e50da97eaa0575d93bee7ac4b2b2576ec", + "type": "github" + }, + "original": { + "owner": "input-output-hk", + "repo": "cardano-crypto", + "rev": "07397f0e50da97eaa0575d93bee7ac4b2b2576ec", + "type": "github" + } + }, + "cardano-crypto_4": { + "flake": false, + "locked": { + "lastModified": 1621376239, + "narHash": "sha256-oxIOVlgm07FAEmgGRF1C2me9TXqVxQulEOcJ22zpTRs=", + "owner": "input-output-hk", + "repo": "cardano-crypto", + "rev": "07397f0e50da97eaa0575d93bee7ac4b2b2576ec", + "type": "github" + }, + "original": { + "owner": "input-output-hk", + "repo": "cardano-crypto", + "rev": "07397f0e50da97eaa0575d93bee7ac4b2b2576ec", + "type": "github" + } + }, + "cardano-crypto_5": { + "flake": false, + "locked": { + "lastModified": 1621376239, + "narHash": "sha256-oxIOVlgm07FAEmgGRF1C2me9TXqVxQulEOcJ22zpTRs=", + "owner": "input-output-hk", + "repo": "cardano-crypto", + "rev": "07397f0e50da97eaa0575d93bee7ac4b2b2576ec", + "type": "github" + }, + "original": { + "owner": "input-output-hk", + "repo": "cardano-crypto", + "rev": "07397f0e50da97eaa0575d93bee7ac4b2b2576ec", + "type": "github" + } + }, + "cardano-crypto_6": { + "flake": false, + "locked": { + "lastModified": 1621376239, + "narHash": "sha256-oxIOVlgm07FAEmgGRF1C2me9TXqVxQulEOcJ22zpTRs=", + "owner": "input-output-hk", + "repo": "cardano-crypto", + "rev": "07397f0e50da97eaa0575d93bee7ac4b2b2576ec", + "type": "github" + }, + "original": { + "owner": "input-output-hk", + "repo": "cardano-crypto", + "rev": "07397f0e50da97eaa0575d93bee7ac4b2b2576ec", + "type": "github" + } + }, "cardano-prelude": { "flake": false, "locked": { @@ -370,6 +933,91 @@ "type": "github" } }, + "cardano-prelude_2": { + "flake": false, + "locked": { + "lastModified": 1641566029, + "narHash": "sha256-CylaHhO4zbZ1dEAv8yWp1swP1xys/s2Sbxg3a2pdnCI=", + "owner": "locallycompact", + "repo": "cardano-prelude", + "rev": "93f95047bb36a055bdd56fb0cafd887c072cdce2", + "type": "github" + }, + "original": { + "owner": "locallycompact", + "repo": "cardano-prelude", + "rev": "93f95047bb36a055bdd56fb0cafd887c072cdce2", + "type": "github" + } + }, + "cardano-prelude_3": { + "flake": false, + "locked": { + "lastModified": 1641566029, + "narHash": "sha256-CylaHhO4zbZ1dEAv8yWp1swP1xys/s2Sbxg3a2pdnCI=", + "owner": "locallycompact", + "repo": "cardano-prelude", + "rev": "93f95047bb36a055bdd56fb0cafd887c072cdce2", + "type": "github" + }, + "original": { + "owner": "locallycompact", + "repo": "cardano-prelude", + "rev": "93f95047bb36a055bdd56fb0cafd887c072cdce2", + "type": "github" + } + }, + "cardano-prelude_4": { + "flake": false, + "locked": { + "lastModified": 1641566029, + "narHash": "sha256-CylaHhO4zbZ1dEAv8yWp1swP1xys/s2Sbxg3a2pdnCI=", + "owner": "locallycompact", + "repo": "cardano-prelude", + "rev": "93f95047bb36a055bdd56fb0cafd887c072cdce2", + "type": "github" + }, + "original": { + "owner": "locallycompact", + "repo": "cardano-prelude", + "rev": "93f95047bb36a055bdd56fb0cafd887c072cdce2", + "type": "github" + } + }, + "cardano-prelude_5": { + "flake": false, + "locked": { + "lastModified": 1641566029, + "narHash": "sha256-CylaHhO4zbZ1dEAv8yWp1swP1xys/s2Sbxg3a2pdnCI=", + "owner": "locallycompact", + "repo": "cardano-prelude", + "rev": "93f95047bb36a055bdd56fb0cafd887c072cdce2", + "type": "github" + }, + "original": { + "owner": "locallycompact", + "repo": "cardano-prelude", + "rev": "93f95047bb36a055bdd56fb0cafd887c072cdce2", + "type": "github" + } + }, + "cardano-prelude_6": { + "flake": false, + "locked": { + "lastModified": 1641566029, + "narHash": "sha256-CylaHhO4zbZ1dEAv8yWp1swP1xys/s2Sbxg3a2pdnCI=", + "owner": "locallycompact", + "repo": "cardano-prelude", + "rev": "93f95047bb36a055bdd56fb0cafd887c072cdce2", + "type": "github" + }, + "original": { + "owner": "locallycompact", + "repo": "cardano-prelude", + "rev": "93f95047bb36a055bdd56fb0cafd887c072cdce2", + "type": "github" + } + }, "cardano-repo-tool": { "flake": false, "locked": { @@ -402,6 +1050,86 @@ "type": "github" } }, + "cardano-repo-tool_3": { + "flake": false, + "locked": { + "lastModified": 1624584417, + "narHash": "sha256-YSepT97PagR/1jTYV/Yer8a2GjFe9+tTwaTCHxuK50M=", + "owner": "input-output-hk", + "repo": "cardano-repo-tool", + "rev": "30e826ed8f00e3e154453b122a6f3d779b2f73ec", + "type": "github" + }, + "original": { + "owner": "input-output-hk", + "repo": "cardano-repo-tool", + "type": "github" + } + }, + "cardano-repo-tool_4": { + "flake": false, + "locked": { + "lastModified": 1624584417, + "narHash": "sha256-YSepT97PagR/1jTYV/Yer8a2GjFe9+tTwaTCHxuK50M=", + "owner": "input-output-hk", + "repo": "cardano-repo-tool", + "rev": "30e826ed8f00e3e154453b122a6f3d779b2f73ec", + "type": "github" + }, + "original": { + "owner": "input-output-hk", + "repo": "cardano-repo-tool", + "type": "github" + } + }, + "cardano-repo-tool_5": { + "flake": false, + "locked": { + "lastModified": 1624584417, + "narHash": "sha256-YSepT97PagR/1jTYV/Yer8a2GjFe9+tTwaTCHxuK50M=", + "owner": "input-output-hk", + "repo": "cardano-repo-tool", + "rev": "30e826ed8f00e3e154453b122a6f3d779b2f73ec", + "type": "github" + }, + "original": { + "owner": "input-output-hk", + "repo": "cardano-repo-tool", + "type": "github" + } + }, + "cardano-repo-tool_6": { + "flake": false, + "locked": { + "lastModified": 1624584417, + "narHash": "sha256-YSepT97PagR/1jTYV/Yer8a2GjFe9+tTwaTCHxuK50M=", + "owner": "input-output-hk", + "repo": "cardano-repo-tool", + "rev": "30e826ed8f00e3e154453b122a6f3d779b2f73ec", + "type": "github" + }, + "original": { + "owner": "input-output-hk", + "repo": "cardano-repo-tool", + "type": "github" + } + }, + "cardano-repo-tool_7": { + "flake": false, + "locked": { + "lastModified": 1624584417, + "narHash": "sha256-YSepT97PagR/1jTYV/Yer8a2GjFe9+tTwaTCHxuK50M=", + "owner": "input-output-hk", + "repo": "cardano-repo-tool", + "rev": "30e826ed8f00e3e154453b122a6f3d779b2f73ec", + "type": "github" + }, + "original": { + "owner": "input-output-hk", + "repo": "cardano-repo-tool", + "type": "github" + } + }, "cardano-shell": { "flake": false, "locked": { @@ -466,6 +1194,86 @@ "type": "github" } }, + "cardano-shell_5": { + "flake": false, + "locked": { + "lastModified": 1608537748, + "narHash": "sha256-PulY1GfiMgKVnBci3ex4ptk2UNYMXqGjJOxcPy2KYT4=", + "owner": "input-output-hk", + "repo": "cardano-shell", + "rev": "9392c75087cb9a3d453998f4230930dea3a95725", + "type": "github" + }, + "original": { + "owner": "input-output-hk", + "repo": "cardano-shell", + "type": "github" + } + }, + "cardano-shell_6": { + "flake": false, + "locked": { + "lastModified": 1608537748, + "narHash": "sha256-PulY1GfiMgKVnBci3ex4ptk2UNYMXqGjJOxcPy2KYT4=", + "owner": "input-output-hk", + "repo": "cardano-shell", + "rev": "9392c75087cb9a3d453998f4230930dea3a95725", + "type": "github" + }, + "original": { + "owner": "input-output-hk", + "repo": "cardano-shell", + "type": "github" + } + }, + "cardano-shell_7": { + "flake": false, + "locked": { + "lastModified": 1608537748, + "narHash": "sha256-PulY1GfiMgKVnBci3ex4ptk2UNYMXqGjJOxcPy2KYT4=", + "owner": "input-output-hk", + "repo": "cardano-shell", + "rev": "9392c75087cb9a3d453998f4230930dea3a95725", + "type": "github" + }, + "original": { + "owner": "input-output-hk", + "repo": "cardano-shell", + "type": "github" + } + }, + "cardano-shell_8": { + "flake": false, + "locked": { + "lastModified": 1608537748, + "narHash": "sha256-PulY1GfiMgKVnBci3ex4ptk2UNYMXqGjJOxcPy2KYT4=", + "owner": "input-output-hk", + "repo": "cardano-shell", + "rev": "9392c75087cb9a3d453998f4230930dea3a95725", + "type": "github" + }, + "original": { + "owner": "input-output-hk", + "repo": "cardano-shell", + "type": "github" + } + }, + "cardano-shell_9": { + "flake": false, + "locked": { + "lastModified": 1608537748, + "narHash": "sha256-PulY1GfiMgKVnBci3ex4ptk2UNYMXqGjJOxcPy2KYT4=", + "owner": "input-output-hk", + "repo": "cardano-shell", + "rev": "9392c75087cb9a3d453998f4230930dea3a95725", + "type": "github" + }, + "original": { + "owner": "input-output-hk", + "repo": "cardano-shell", + "type": "github" + } + }, "cryptonite": { "flake": false, "locked": { @@ -483,14 +1291,99 @@ "type": "github" } }, + "cryptonite_2": { + "flake": false, + "locked": { + "lastModified": 1639749289, + "narHash": "sha256-/KS2S0f9r4c/q+IUGwkFOY9jbZkyK3dl0xMpDbULeqc=", + "owner": "haskell-crypto", + "repo": "cryptonite", + "rev": "cec291d988f0f17828384f3358214ab9bf724a13", + "type": "github" + }, + "original": { + "owner": "haskell-crypto", + "repo": "cryptonite", + "rev": "cec291d988f0f17828384f3358214ab9bf724a13", + "type": "github" + } + }, + "cryptonite_3": { + "flake": false, + "locked": { + "lastModified": 1639749289, + "narHash": "sha256-/KS2S0f9r4c/q+IUGwkFOY9jbZkyK3dl0xMpDbULeqc=", + "owner": "haskell-crypto", + "repo": "cryptonite", + "rev": "cec291d988f0f17828384f3358214ab9bf724a13", + "type": "github" + }, + "original": { + "owner": "haskell-crypto", + "repo": "cryptonite", + "rev": "cec291d988f0f17828384f3358214ab9bf724a13", + "type": "github" + } + }, + "cryptonite_4": { + "flake": false, + "locked": { + "lastModified": 1639749289, + "narHash": "sha256-/KS2S0f9r4c/q+IUGwkFOY9jbZkyK3dl0xMpDbULeqc=", + "owner": "haskell-crypto", + "repo": "cryptonite", + "rev": "cec291d988f0f17828384f3358214ab9bf724a13", + "type": "github" + }, + "original": { + "owner": "haskell-crypto", + "repo": "cryptonite", + "rev": "cec291d988f0f17828384f3358214ab9bf724a13", + "type": "github" + } + }, + "cryptonite_5": { + "flake": false, + "locked": { + "lastModified": 1639749289, + "narHash": "sha256-/KS2S0f9r4c/q+IUGwkFOY9jbZkyK3dl0xMpDbULeqc=", + "owner": "haskell-crypto", + "repo": "cryptonite", + "rev": "cec291d988f0f17828384f3358214ab9bf724a13", + "type": "github" + }, + "original": { + "owner": "haskell-crypto", + "repo": "cryptonite", + "rev": "cec291d988f0f17828384f3358214ab9bf724a13", + "type": "github" + } + }, + "cryptonite_6": { + "flake": false, + "locked": { + "lastModified": 1639749289, + "narHash": "sha256-/KS2S0f9r4c/q+IUGwkFOY9jbZkyK3dl0xMpDbULeqc=", + "owner": "haskell-crypto", + "repo": "cryptonite", + "rev": "cec291d988f0f17828384f3358214ab9bf724a13", + "type": "github" + }, + "original": { + "owner": "haskell-crypto", + "repo": "cryptonite", + "rev": "cec291d988f0f17828384f3358214ab9bf724a13", + "type": "github" + } + }, "easy-ps": { "flake": false, "locked": { - "lastModified": 1649768932, - "narHash": "sha256-T96xGZV2AEP07smv/L2s5U7jY1LTdJEiTnA90gJ3Fco=", + "lastModified": 1631961521, + "narHash": "sha256-1yPjUdOYzw1+UGFzBXbyZqEbsM6XZu/6+v8W35qFdLo=", "owner": "justinwoo", "repo": "easy-purescript-nix", - "rev": "d56c436a66ec2a8a93b309c83693cef1507dca7a", + "rev": "d9a37c75ed361372e1545f6efbc08d819b3c28c8", "type": "github" }, "original": { @@ -499,6 +1392,352 @@ "type": "github" } }, + "ema": { + "inputs": { + "flake-compat": "flake-compat_3", + "flake-utils": "flake-utils_3", + "lint-utils": "lint-utils", + "nixpkgs": "nixpkgs_2" + }, + "locked": { + "lastModified": 1650932571, + "narHash": "sha256-rdpfJ+10a1uBPtHMNoAcpDE183RzpILRpsMgxj/YJek=", + "owner": "srid", + "repo": "ema", + "rev": "05c8a2127391ee4b593fa6541bc9078eb44ad10f", + "type": "github" + }, + "original": { + "owner": "srid", + "ref": "multisite", + "repo": "ema", + "type": "github" + } + }, + "ema_2": { + "inputs": { + "flake-compat": "flake-compat_7", + "flake-utils": "flake-utils_10", + "lint-utils": "lint-utils_2", + "nixpkgs": "nixpkgs_10" + }, + "locked": { + "lastModified": 1650932571, + "narHash": "sha256-rdpfJ+10a1uBPtHMNoAcpDE183RzpILRpsMgxj/YJek=", + "owner": "srid", + "repo": "ema", + "rev": "05c8a2127391ee4b593fa6541bc9078eb44ad10f", + "type": "github" + }, + "original": { + "owner": "srid", + "ref": "multisite", + "repo": "ema", + "type": "github" + } + }, + "ema_3": { + "inputs": { + "flake-compat": "flake-compat_11", + "flake-utils": "flake-utils_16", + "lint-utils": "lint-utils_3", + "nixpkgs": "nixpkgs_16" + }, + "locked": { + "lastModified": 1650932571, + "narHash": "sha256-rdpfJ+10a1uBPtHMNoAcpDE183RzpILRpsMgxj/YJek=", + "owner": "srid", + "repo": "ema", + "rev": "05c8a2127391ee4b593fa6541bc9078eb44ad10f", + "type": "github" + }, + "original": { + "owner": "srid", + "ref": "multisite", + "repo": "ema", + "type": "github" + } + }, + "ema_4": { + "inputs": { + "flake-compat": "flake-compat_15", + "flake-utils": "flake-utils_22", + "lint-utils": "lint-utils_4", + "nixpkgs": "nixpkgs_22" + }, + "locked": { + "lastModified": 1650932571, + "narHash": "sha256-rdpfJ+10a1uBPtHMNoAcpDE183RzpILRpsMgxj/YJek=", + "owner": "srid", + "repo": "ema", + "rev": "05c8a2127391ee4b593fa6541bc9078eb44ad10f", + "type": "github" + }, + "original": { + "owner": "srid", + "ref": "multisite", + "repo": "ema", + "type": "github" + } + }, + "ema_5": { + "inputs": { + "flake-compat": "flake-compat_19", + "flake-utils": "flake-utils_28", + "lint-utils": "lint-utils_5", + "nixpkgs": "nixpkgs_28" + }, + "locked": { + "lastModified": 1650932571, + "narHash": "sha256-rdpfJ+10a1uBPtHMNoAcpDE183RzpILRpsMgxj/YJek=", + "owner": "srid", + "repo": "ema", + "rev": "05c8a2127391ee4b593fa6541bc9078eb44ad10f", + "type": "github" + }, + "original": { + "owner": "srid", + "ref": "multisite", + "repo": "ema", + "type": "github" + } + }, + "emanote": { + "inputs": { + "ema": "ema", + "flake-compat": [ + "liqwid-plutarch-extra", + "plutarch", + "emanote", + "ema", + "flake-compat" + ], + "flake-utils": [ + "liqwid-plutarch-extra", + "plutarch", + "emanote", + "ema", + "flake-utils" + ], + "heist": "heist", + "ixset-typed": "ixset-typed", + "nixpkgs": [ + "liqwid-plutarch-extra", + "plutarch", + "emanote", + "ema", + "nixpkgs" + ], + "pandoc-link-context": "pandoc-link-context", + "pathtree": "pathtree", + "tailwind-haskell": "tailwind-haskell", + "unionmount": "unionmount" + }, + "locked": { + "lastModified": 1651699367, + "narHash": "sha256-f+whlGwxzv5Lcem+rxBgIgnkU+KcckogtWbRwZ6nM4I=", + "owner": "srid", + "repo": "emanote", + "rev": "2b6558fde2999ec22f645cb95322995b780f09f1", + "type": "github" + }, + "original": { + "owner": "srid", + "ref": "master", + "repo": "emanote", + "type": "github" + } + }, + "emanote_2": { + "inputs": { + "ema": "ema_2", + "flake-compat": [ + "plutarch-numeric", + "plutarch", + "emanote", + "ema", + "flake-compat" + ], + "flake-utils": [ + "plutarch-numeric", + "plutarch", + "emanote", + "ema", + "flake-utils" + ], + "heist": "heist_2", + "ixset-typed": "ixset-typed_2", + "nixpkgs": [ + "plutarch-numeric", + "plutarch", + "emanote", + "ema", + "nixpkgs" + ], + "pandoc-link-context": "pandoc-link-context_2", + "pathtree": "pathtree_2", + "tailwind-haskell": "tailwind-haskell_2", + "unionmount": "unionmount_2" + }, + "locked": { + "lastModified": 1651699367, + "narHash": "sha256-f+whlGwxzv5Lcem+rxBgIgnkU+KcckogtWbRwZ6nM4I=", + "owner": "srid", + "repo": "emanote", + "rev": "2b6558fde2999ec22f645cb95322995b780f09f1", + "type": "github" + }, + "original": { + "owner": "srid", + "ref": "master", + "repo": "emanote", + "type": "github" + } + }, + "emanote_3": { + "inputs": { + "ema": "ema_3", + "flake-compat": [ + "plutarch-safe-money", + "liqwid-plutarch-extra", + "plutarch", + "emanote", + "ema", + "flake-compat" + ], + "flake-utils": [ + "plutarch-safe-money", + "liqwid-plutarch-extra", + "plutarch", + "emanote", + "ema", + "flake-utils" + ], + "heist": "heist_3", + "ixset-typed": "ixset-typed_3", + "nixpkgs": [ + "plutarch-safe-money", + "liqwid-plutarch-extra", + "plutarch", + "emanote", + "ema", + "nixpkgs" + ], + "pandoc-link-context": "pandoc-link-context_3", + "pathtree": "pathtree_3", + "tailwind-haskell": "tailwind-haskell_3", + "unionmount": "unionmount_3" + }, + "locked": { + "lastModified": 1651699367, + "narHash": "sha256-f+whlGwxzv5Lcem+rxBgIgnkU+KcckogtWbRwZ6nM4I=", + "owner": "srid", + "repo": "emanote", + "rev": "2b6558fde2999ec22f645cb95322995b780f09f1", + "type": "github" + }, + "original": { + "owner": "srid", + "ref": "master", + "repo": "emanote", + "type": "github" + } + }, + "emanote_4": { + "inputs": { + "ema": "ema_4", + "flake-compat": [ + "plutarch-safe-money", + "plutarch", + "emanote", + "ema", + "flake-compat" + ], + "flake-utils": [ + "plutarch-safe-money", + "plutarch", + "emanote", + "ema", + "flake-utils" + ], + "heist": "heist_4", + "ixset-typed": "ixset-typed_4", + "nixpkgs": [ + "plutarch-safe-money", + "plutarch", + "emanote", + "ema", + "nixpkgs" + ], + "pandoc-link-context": "pandoc-link-context_4", + "pathtree": "pathtree_4", + "tailwind-haskell": "tailwind-haskell_4", + "unionmount": "unionmount_4" + }, + "locked": { + "lastModified": 1651699367, + "narHash": "sha256-f+whlGwxzv5Lcem+rxBgIgnkU+KcckogtWbRwZ6nM4I=", + "owner": "srid", + "repo": "emanote", + "rev": "2b6558fde2999ec22f645cb95322995b780f09f1", + "type": "github" + }, + "original": { + "owner": "srid", + "ref": "master", + "repo": "emanote", + "type": "github" + } + }, + "emanote_5": { + "inputs": { + "ema": "ema_5", + "flake-compat": [ + "plutarch-safe-money", + "plutarch-numeric", + "plutarch", + "emanote", + "ema", + "flake-compat" + ], + "flake-utils": [ + "plutarch-safe-money", + "plutarch-numeric", + "plutarch", + "emanote", + "ema", + "flake-utils" + ], + "heist": "heist_5", + "ixset-typed": "ixset-typed_5", + "nixpkgs": [ + "plutarch-safe-money", + "plutarch-numeric", + "plutarch", + "emanote", + "ema", + "nixpkgs" + ], + "pandoc-link-context": "pandoc-link-context_5", + "pathtree": "pathtree_5", + "tailwind-haskell": "tailwind-haskell_5", + "unionmount": "unionmount_5" + }, + "locked": { + "lastModified": 1651699367, + "narHash": "sha256-f+whlGwxzv5Lcem+rxBgIgnkU+KcckogtWbRwZ6nM4I=", + "owner": "srid", + "repo": "emanote", + "rev": "2b6558fde2999ec22f645cb95322995b780f09f1", + "type": "github" + }, + "original": { + "owner": "srid", + "ref": "master", + "repo": "emanote", + "type": "github" + } + }, "flake-compat": { "flake": false, "locked": { @@ -545,6 +1784,166 @@ "type": "github" } }, + "flake-compat_10": { + "flake": false, + "locked": { + "lastModified": 1627913399, + "narHash": "sha256-hY8g6H2KFL8ownSiFeMOjwPC8P0ueXpCVEbxgda3pko=", + "owner": "edolstra", + "repo": "flake-compat", + "rev": "12c64ca55c1014cdc1b16ed5a804aa8576601ff2", + "type": "github" + }, + "original": { + "owner": "edolstra", + "repo": "flake-compat", + "type": "github" + } + }, + "flake-compat_11": { + "flake": false, + "locked": { + "lastModified": 1648199409, + "narHash": "sha256-JwPKdC2PoVBkG6E+eWw3j6BMR6sL3COpYWfif7RVb8Y=", + "owner": "edolstra", + "repo": "flake-compat", + "rev": "64a525ee38886ab9028e6f61790de0832aa3ef03", + "type": "github" + }, + "original": { + "owner": "edolstra", + "repo": "flake-compat", + "type": "github" + } + }, + "flake-compat_12": { + "flake": false, + "locked": { + "lastModified": 1641205782, + "narHash": "sha256-4jY7RCWUoZ9cKD8co0/4tFARpWB+57+r1bLLvXNJliY=", + "owner": "edolstra", + "repo": "flake-compat", + "rev": "b7547d3eed6f32d06102ead8991ec52ab0a4f1a7", + "type": "github" + }, + "original": { + "owner": "edolstra", + "repo": "flake-compat", + "type": "github" + } + }, + "flake-compat_13": { + "flake": false, + "locked": { + "lastModified": 1641205782, + "narHash": "sha256-4jY7RCWUoZ9cKD8co0/4tFARpWB+57+r1bLLvXNJliY=", + "owner": "edolstra", + "repo": "flake-compat", + "rev": "b7547d3eed6f32d06102ead8991ec52ab0a4f1a7", + "type": "github" + }, + "original": { + "owner": "edolstra", + "repo": "flake-compat", + "type": "github" + } + }, + "flake-compat_14": { + "flake": false, + "locked": { + "lastModified": 1627913399, + "narHash": "sha256-hY8g6H2KFL8ownSiFeMOjwPC8P0ueXpCVEbxgda3pko=", + "owner": "edolstra", + "repo": "flake-compat", + "rev": "12c64ca55c1014cdc1b16ed5a804aa8576601ff2", + "type": "github" + }, + "original": { + "owner": "edolstra", + "repo": "flake-compat", + "type": "github" + } + }, + "flake-compat_15": { + "flake": false, + "locked": { + "lastModified": 1648199409, + "narHash": "sha256-JwPKdC2PoVBkG6E+eWw3j6BMR6sL3COpYWfif7RVb8Y=", + "owner": "edolstra", + "repo": "flake-compat", + "rev": "64a525ee38886ab9028e6f61790de0832aa3ef03", + "type": "github" + }, + "original": { + "owner": "edolstra", + "repo": "flake-compat", + "type": "github" + } + }, + "flake-compat_16": { + "flake": false, + "locked": { + "lastModified": 1641205782, + "narHash": "sha256-4jY7RCWUoZ9cKD8co0/4tFARpWB+57+r1bLLvXNJliY=", + "owner": "edolstra", + "repo": "flake-compat", + "rev": "b7547d3eed6f32d06102ead8991ec52ab0a4f1a7", + "type": "github" + }, + "original": { + "owner": "edolstra", + "repo": "flake-compat", + "type": "github" + } + }, + "flake-compat_17": { + "flake": false, + "locked": { + "lastModified": 1641205782, + "narHash": "sha256-4jY7RCWUoZ9cKD8co0/4tFARpWB+57+r1bLLvXNJliY=", + "owner": "edolstra", + "repo": "flake-compat", + "rev": "b7547d3eed6f32d06102ead8991ec52ab0a4f1a7", + "type": "github" + }, + "original": { + "owner": "edolstra", + "repo": "flake-compat", + "type": "github" + } + }, + "flake-compat_18": { + "flake": false, + "locked": { + "lastModified": 1627913399, + "narHash": "sha256-hY8g6H2KFL8ownSiFeMOjwPC8P0ueXpCVEbxgda3pko=", + "owner": "edolstra", + "repo": "flake-compat", + "rev": "12c64ca55c1014cdc1b16ed5a804aa8576601ff2", + "type": "github" + }, + "original": { + "owner": "edolstra", + "repo": "flake-compat", + "type": "github" + } + }, + "flake-compat_19": { + "flake": false, + "locked": { + "lastModified": 1648199409, + "narHash": "sha256-JwPKdC2PoVBkG6E+eWw3j6BMR6sL3COpYWfif7RVb8Y=", + "owner": "edolstra", + "repo": "flake-compat", + "rev": "64a525ee38886ab9028e6f61790de0832aa3ef03", + "type": "github" + }, + "original": { + "owner": "edolstra", + "repo": "flake-compat", + "type": "github" + } + }, "flake-compat_2": { "flake": false, "locked": { @@ -561,19 +1960,66 @@ "type": "github" } }, - "flake-compat_3": { + "flake-compat_20": { "flake": false, "locked": { - "lastModified": 1606424373, - "narHash": "sha256-oq8d4//CJOrVj+EcOaSXvMebvuTkmBJuT5tzlfewUnQ=", + "lastModified": 1641205782, + "narHash": "sha256-4jY7RCWUoZ9cKD8co0/4tFARpWB+57+r1bLLvXNJliY=", "owner": "edolstra", "repo": "flake-compat", - "rev": "99f1c2157fba4bfe6211a321fd0ee43199025dbf", + "rev": "b7547d3eed6f32d06102ead8991ec52ab0a4f1a7", + "type": "github" + }, + "original": { + "owner": "edolstra", + "repo": "flake-compat", + "type": "github" + } + }, + "flake-compat_21": { + "flake": false, + "locked": { + "lastModified": 1641205782, + "narHash": "sha256-4jY7RCWUoZ9cKD8co0/4tFARpWB+57+r1bLLvXNJliY=", + "owner": "edolstra", + "repo": "flake-compat", + "rev": "b7547d3eed6f32d06102ead8991ec52ab0a4f1a7", + "type": "github" + }, + "original": { + "owner": "edolstra", + "repo": "flake-compat", + "type": "github" + } + }, + "flake-compat_22": { + "flake": false, + "locked": { + "lastModified": 1627913399, + "narHash": "sha256-hY8g6H2KFL8ownSiFeMOjwPC8P0ueXpCVEbxgda3pko=", + "owner": "edolstra", + "repo": "flake-compat", + "rev": "12c64ca55c1014cdc1b16ed5a804aa8576601ff2", + "type": "github" + }, + "original": { + "owner": "edolstra", + "repo": "flake-compat", + "type": "github" + } + }, + "flake-compat_3": { + "flake": false, + "locked": { + "lastModified": 1648199409, + "narHash": "sha256-JwPKdC2PoVBkG6E+eWw3j6BMR6sL3COpYWfif7RVb8Y=", + "owner": "edolstra", + "repo": "flake-compat", + "rev": "64a525ee38886ab9028e6f61790de0832aa3ef03", "type": "github" }, "original": { "owner": "edolstra", - "ref": "master", "repo": "flake-compat", "type": "github" } @@ -581,11 +2027,91 @@ "flake-compat_4": { "flake": false, "locked": { - "lastModified": 1606424373, - "narHash": "sha256-oq8d4//CJOrVj+EcOaSXvMebvuTkmBJuT5tzlfewUnQ=", + "lastModified": 1641205782, + "narHash": "sha256-4jY7RCWUoZ9cKD8co0/4tFARpWB+57+r1bLLvXNJliY=", "owner": "edolstra", "repo": "flake-compat", - "rev": "99f1c2157fba4bfe6211a321fd0ee43199025dbf", + "rev": "b7547d3eed6f32d06102ead8991ec52ab0a4f1a7", + "type": "github" + }, + "original": { + "owner": "edolstra", + "repo": "flake-compat", + "type": "github" + } + }, + "flake-compat_5": { + "flake": false, + "locked": { + "lastModified": 1641205782, + "narHash": "sha256-4jY7RCWUoZ9cKD8co0/4tFARpWB+57+r1bLLvXNJliY=", + "owner": "edolstra", + "repo": "flake-compat", + "rev": "b7547d3eed6f32d06102ead8991ec52ab0a4f1a7", + "type": "github" + }, + "original": { + "owner": "edolstra", + "repo": "flake-compat", + "type": "github" + } + }, + "flake-compat_6": { + "flake": false, + "locked": { + "lastModified": 1627913399, + "narHash": "sha256-hY8g6H2KFL8ownSiFeMOjwPC8P0ueXpCVEbxgda3pko=", + "owner": "edolstra", + "repo": "flake-compat", + "rev": "12c64ca55c1014cdc1b16ed5a804aa8576601ff2", + "type": "github" + }, + "original": { + "owner": "edolstra", + "repo": "flake-compat", + "type": "github" + } + }, + "flake-compat_7": { + "flake": false, + "locked": { + "lastModified": 1648199409, + "narHash": "sha256-JwPKdC2PoVBkG6E+eWw3j6BMR6sL3COpYWfif7RVb8Y=", + "owner": "edolstra", + "repo": "flake-compat", + "rev": "64a525ee38886ab9028e6f61790de0832aa3ef03", + "type": "github" + }, + "original": { + "owner": "edolstra", + "repo": "flake-compat", + "type": "github" + } + }, + "flake-compat_8": { + "flake": false, + "locked": { + "lastModified": 1641205782, + "narHash": "sha256-4jY7RCWUoZ9cKD8co0/4tFARpWB+57+r1bLLvXNJliY=", + "owner": "edolstra", + "repo": "flake-compat", + "rev": "b7547d3eed6f32d06102ead8991ec52ab0a4f1a7", + "type": "github" + }, + "original": { + "owner": "edolstra", + "repo": "flake-compat", + "type": "github" + } + }, + "flake-compat_9": { + "flake": false, + "locked": { + "lastModified": 1641205782, + "narHash": "sha256-4jY7RCWUoZ9cKD8co0/4tFARpWB+57+r1bLLvXNJliY=", + "owner": "edolstra", + "repo": "flake-compat", + "rev": "b7547d3eed6f32d06102ead8991ec52ab0a4f1a7", "type": "github" }, "original": { @@ -609,6 +2135,156 @@ "type": "github" } }, + "flake-utils_10": { + "locked": { + "lastModified": 1648297722, + "narHash": "sha256-W+qlPsiZd8F3XkzXOzAoR+mpFqzm3ekQkJNa+PIh1BQ=", + "owner": "numtide", + "repo": "flake-utils", + "rev": "0f8662f1319ad6abf89b3380dd2722369fc51ade", + "type": "github" + }, + "original": { + "owner": "numtide", + "repo": "flake-utils", + "type": "github" + } + }, + "flake-utils_11": { + "locked": { + "lastModified": 1644229661, + "narHash": "sha256-1YdnJAsNy69bpcjuoKdOYQX0YxZBiCYZo4Twxerqv7k=", + "owner": "numtide", + "repo": "flake-utils", + "rev": "3cecb5b042f7f209c56ffd8371b2711a290ec797", + "type": "github" + }, + "original": { + "owner": "numtide", + "repo": "flake-utils", + "type": "github" + } + }, + "flake-utils_12": { + "locked": { + "lastModified": 1642700792, + "narHash": "sha256-XqHrk7hFb+zBvRg6Ghl+AZDq03ov6OshJLiSWOoX5es=", + "owner": "numtide", + "repo": "flake-utils", + "rev": "846b2ae0fc4cc943637d3d1def4454213e203cba", + "type": "github" + }, + "original": { + "owner": "numtide", + "repo": "flake-utils", + "type": "github" + } + }, + "flake-utils_13": { + "locked": { + "lastModified": 1642700792, + "narHash": "sha256-XqHrk7hFb+zBvRg6Ghl+AZDq03ov6OshJLiSWOoX5es=", + "owner": "numtide", + "repo": "flake-utils", + "rev": "846b2ae0fc4cc943637d3d1def4454213e203cba", + "type": "github" + }, + "original": { + "owner": "numtide", + "repo": "flake-utils", + "type": "github" + } + }, + "flake-utils_14": { + "locked": { + "lastModified": 1631561581, + "narHash": "sha256-3VQMV5zvxaVLvqqUrNz3iJelLw30mIVSfZmAaauM3dA=", + "owner": "numtide", + "repo": "flake-utils", + "rev": "7e5bf3925f6fbdfaf50a2a7ca0be2879c4261d19", + "type": "github" + }, + "original": { + "owner": "numtide", + "repo": "flake-utils", + "type": "github" + } + }, + "flake-utils_15": { + "locked": { + "lastModified": 1644229661, + "narHash": "sha256-1YdnJAsNy69bpcjuoKdOYQX0YxZBiCYZo4Twxerqv7k=", + "owner": "numtide", + "repo": "flake-utils", + "rev": "3cecb5b042f7f209c56ffd8371b2711a290ec797", + "type": "github" + }, + "original": { + "owner": "numtide", + "repo": "flake-utils", + "type": "github" + } + }, + "flake-utils_16": { + "locked": { + "lastModified": 1648297722, + "narHash": "sha256-W+qlPsiZd8F3XkzXOzAoR+mpFqzm3ekQkJNa+PIh1BQ=", + "owner": "numtide", + "repo": "flake-utils", + "rev": "0f8662f1319ad6abf89b3380dd2722369fc51ade", + "type": "github" + }, + "original": { + "owner": "numtide", + "repo": "flake-utils", + "type": "github" + } + }, + "flake-utils_17": { + "locked": { + "lastModified": 1644229661, + "narHash": "sha256-1YdnJAsNy69bpcjuoKdOYQX0YxZBiCYZo4Twxerqv7k=", + "owner": "numtide", + "repo": "flake-utils", + "rev": "3cecb5b042f7f209c56ffd8371b2711a290ec797", + "type": "github" + }, + "original": { + "owner": "numtide", + "repo": "flake-utils", + "type": "github" + } + }, + "flake-utils_18": { + "locked": { + "lastModified": 1642700792, + "narHash": "sha256-XqHrk7hFb+zBvRg6Ghl+AZDq03ov6OshJLiSWOoX5es=", + "owner": "numtide", + "repo": "flake-utils", + "rev": "846b2ae0fc4cc943637d3d1def4454213e203cba", + "type": "github" + }, + "original": { + "owner": "numtide", + "repo": "flake-utils", + "type": "github" + } + }, + "flake-utils_19": { + "locked": { + "lastModified": 1642700792, + "narHash": "sha256-XqHrk7hFb+zBvRg6Ghl+AZDq03ov6OshJLiSWOoX5es=", + "owner": "numtide", + "repo": "flake-utils", + "rev": "846b2ae0fc4cc943637d3d1def4454213e203cba", + "type": "github" + }, + "original": { + "owner": "numtide", + "repo": "flake-utils", + "type": "github" + } + }, "flake-utils_2": { "locked": { "lastModified": 1623875721, @@ -624,7 +2300,247 @@ "type": "github" } }, + "flake-utils_20": { + "locked": { + "lastModified": 1631561581, + "narHash": "sha256-3VQMV5zvxaVLvqqUrNz3iJelLw30mIVSfZmAaauM3dA=", + "owner": "numtide", + "repo": "flake-utils", + "rev": "7e5bf3925f6fbdfaf50a2a7ca0be2879c4261d19", + "type": "github" + }, + "original": { + "owner": "numtide", + "repo": "flake-utils", + "type": "github" + } + }, + "flake-utils_21": { + "locked": { + "lastModified": 1644229661, + "narHash": "sha256-1YdnJAsNy69bpcjuoKdOYQX0YxZBiCYZo4Twxerqv7k=", + "owner": "numtide", + "repo": "flake-utils", + "rev": "3cecb5b042f7f209c56ffd8371b2711a290ec797", + "type": "github" + }, + "original": { + "owner": "numtide", + "repo": "flake-utils", + "type": "github" + } + }, + "flake-utils_22": { + "locked": { + "lastModified": 1648297722, + "narHash": "sha256-W+qlPsiZd8F3XkzXOzAoR+mpFqzm3ekQkJNa+PIh1BQ=", + "owner": "numtide", + "repo": "flake-utils", + "rev": "0f8662f1319ad6abf89b3380dd2722369fc51ade", + "type": "github" + }, + "original": { + "owner": "numtide", + "repo": "flake-utils", + "type": "github" + } + }, + "flake-utils_23": { + "locked": { + "lastModified": 1644229661, + "narHash": "sha256-1YdnJAsNy69bpcjuoKdOYQX0YxZBiCYZo4Twxerqv7k=", + "owner": "numtide", + "repo": "flake-utils", + "rev": "3cecb5b042f7f209c56ffd8371b2711a290ec797", + "type": "github" + }, + "original": { + "owner": "numtide", + "repo": "flake-utils", + "type": "github" + } + }, + "flake-utils_24": { + "locked": { + "lastModified": 1642700792, + "narHash": "sha256-XqHrk7hFb+zBvRg6Ghl+AZDq03ov6OshJLiSWOoX5es=", + "owner": "numtide", + "repo": "flake-utils", + "rev": "846b2ae0fc4cc943637d3d1def4454213e203cba", + "type": "github" + }, + "original": { + "owner": "numtide", + "repo": "flake-utils", + "type": "github" + } + }, + "flake-utils_25": { + "locked": { + "lastModified": 1642700792, + "narHash": "sha256-XqHrk7hFb+zBvRg6Ghl+AZDq03ov6OshJLiSWOoX5es=", + "owner": "numtide", + "repo": "flake-utils", + "rev": "846b2ae0fc4cc943637d3d1def4454213e203cba", + "type": "github" + }, + "original": { + "owner": "numtide", + "repo": "flake-utils", + "type": "github" + } + }, + "flake-utils_26": { + "locked": { + "lastModified": 1631561581, + "narHash": "sha256-3VQMV5zvxaVLvqqUrNz3iJelLw30mIVSfZmAaauM3dA=", + "owner": "numtide", + "repo": "flake-utils", + "rev": "7e5bf3925f6fbdfaf50a2a7ca0be2879c4261d19", + "type": "github" + }, + "original": { + "owner": "numtide", + "repo": "flake-utils", + "type": "github" + } + }, + "flake-utils_27": { + "locked": { + "lastModified": 1644229661, + "narHash": "sha256-1YdnJAsNy69bpcjuoKdOYQX0YxZBiCYZo4Twxerqv7k=", + "owner": "numtide", + "repo": "flake-utils", + "rev": "3cecb5b042f7f209c56ffd8371b2711a290ec797", + "type": "github" + }, + "original": { + "owner": "numtide", + "repo": "flake-utils", + "type": "github" + } + }, + "flake-utils_28": { + "locked": { + "lastModified": 1648297722, + "narHash": "sha256-W+qlPsiZd8F3XkzXOzAoR+mpFqzm3ekQkJNa+PIh1BQ=", + "owner": "numtide", + "repo": "flake-utils", + "rev": "0f8662f1319ad6abf89b3380dd2722369fc51ade", + "type": "github" + }, + "original": { + "owner": "numtide", + "repo": "flake-utils", + "type": "github" + } + }, + "flake-utils_29": { + "locked": { + "lastModified": 1644229661, + "narHash": "sha256-1YdnJAsNy69bpcjuoKdOYQX0YxZBiCYZo4Twxerqv7k=", + "owner": "numtide", + "repo": "flake-utils", + "rev": "3cecb5b042f7f209c56ffd8371b2711a290ec797", + "type": "github" + }, + "original": { + "owner": "numtide", + "repo": "flake-utils", + "type": "github" + } + }, "flake-utils_3": { + "locked": { + "lastModified": 1648297722, + "narHash": "sha256-W+qlPsiZd8F3XkzXOzAoR+mpFqzm3ekQkJNa+PIh1BQ=", + "owner": "numtide", + "repo": "flake-utils", + "rev": "0f8662f1319ad6abf89b3380dd2722369fc51ade", + "type": "github" + }, + "original": { + "owner": "numtide", + "repo": "flake-utils", + "type": "github" + } + }, + "flake-utils_30": { + "locked": { + "lastModified": 1642700792, + "narHash": "sha256-XqHrk7hFb+zBvRg6Ghl+AZDq03ov6OshJLiSWOoX5es=", + "owner": "numtide", + "repo": "flake-utils", + "rev": "846b2ae0fc4cc943637d3d1def4454213e203cba", + "type": "github" + }, + "original": { + "owner": "numtide", + "repo": "flake-utils", + "type": "github" + } + }, + "flake-utils_31": { + "locked": { + "lastModified": 1642700792, + "narHash": "sha256-XqHrk7hFb+zBvRg6Ghl+AZDq03ov6OshJLiSWOoX5es=", + "owner": "numtide", + "repo": "flake-utils", + "rev": "846b2ae0fc4cc943637d3d1def4454213e203cba", + "type": "github" + }, + "original": { + "owner": "numtide", + "repo": "flake-utils", + "type": "github" + } + }, + "flake-utils_32": { + "locked": { + "lastModified": 1631561581, + "narHash": "sha256-3VQMV5zvxaVLvqqUrNz3iJelLw30mIVSfZmAaauM3dA=", + "owner": "numtide", + "repo": "flake-utils", + "rev": "7e5bf3925f6fbdfaf50a2a7ca0be2879c4261d19", + "type": "github" + }, + "original": { + "owner": "numtide", + "repo": "flake-utils", + "type": "github" + } + }, + "flake-utils_33": { + "locked": { + "lastModified": 1644229661, + "narHash": "sha256-1YdnJAsNy69bpcjuoKdOYQX0YxZBiCYZo4Twxerqv7k=", + "owner": "numtide", + "repo": "flake-utils", + "rev": "3cecb5b042f7f209c56ffd8371b2711a290ec797", + "type": "github" + }, + "original": { + "owner": "numtide", + "repo": "flake-utils", + "type": "github" + } + }, + "flake-utils_34": { + "locked": { + "lastModified": 1631561581, + "narHash": "sha256-3VQMV5zvxaVLvqqUrNz3iJelLw30mIVSfZmAaauM3dA=", + "owner": "numtide", + "repo": "flake-utils", + "rev": "7e5bf3925f6fbdfaf50a2a7ca0be2879c4261d19", + "type": "github" + }, + "original": { + "owner": "numtide", + "repo": "flake-utils", + "type": "github" + } + }, + "flake-utils_35": { "locked": { "lastModified": 1623875721, "narHash": "sha256-A8BU7bjS5GirpAUv4QA+QnJ4CceLHkcXdRp4xITDB0s=", @@ -640,6 +2556,51 @@ } }, "flake-utils_4": { + "locked": { + "lastModified": 1644229661, + "narHash": "sha256-1YdnJAsNy69bpcjuoKdOYQX0YxZBiCYZo4Twxerqv7k=", + "owner": "numtide", + "repo": "flake-utils", + "rev": "3cecb5b042f7f209c56ffd8371b2711a290ec797", + "type": "github" + }, + "original": { + "owner": "numtide", + "repo": "flake-utils", + "type": "github" + } + }, + "flake-utils_5": { + "locked": { + "lastModified": 1642700792, + "narHash": "sha256-XqHrk7hFb+zBvRg6Ghl+AZDq03ov6OshJLiSWOoX5es=", + "owner": "numtide", + "repo": "flake-utils", + "rev": "846b2ae0fc4cc943637d3d1def4454213e203cba", + "type": "github" + }, + "original": { + "owner": "numtide", + "repo": "flake-utils", + "type": "github" + } + }, + "flake-utils_6": { + "locked": { + "lastModified": 1642700792, + "narHash": "sha256-XqHrk7hFb+zBvRg6Ghl+AZDq03ov6OshJLiSWOoX5es=", + "owner": "numtide", + "repo": "flake-utils", + "rev": "846b2ae0fc4cc943637d3d1def4454213e203cba", + "type": "github" + }, + "original": { + "owner": "numtide", + "repo": "flake-utils", + "type": "github" + } + }, + "flake-utils_7": { "locked": { "lastModified": 1631561581, "narHash": "sha256-3VQMV5zvxaVLvqqUrNz3iJelLw30mIVSfZmAaauM3dA=", @@ -654,7 +2615,22 @@ "type": "github" } }, - "flake-utils_5": { + "flake-utils_8": { + "locked": { + "lastModified": 1644229661, + "narHash": "sha256-1YdnJAsNy69bpcjuoKdOYQX0YxZBiCYZo4Twxerqv7k=", + "owner": "numtide", + "repo": "flake-utils", + "rev": "3cecb5b042f7f209c56ffd8371b2711a290ec797", + "type": "github" + }, + "original": { + "owner": "numtide", + "repo": "flake-utils", + "type": "github" + } + }, + "flake-utils_9": { "locked": { "lastModified": 1644229661, "narHash": "sha256-1YdnJAsNy69bpcjuoKdOYQX0YxZBiCYZo4Twxerqv7k=", @@ -686,6 +2662,91 @@ "type": "github" } }, + "flat_2": { + "flake": false, + "locked": { + "lastModified": 1641898475, + "narHash": "sha256-D7jJ4t0T1ZvXbO61r3HQj77hZ5hWF/P1L8X9+MnfD6c=", + "owner": "Quid2", + "repo": "flat", + "rev": "41a040c413351e021982bb78bd00f750628f8060", + "type": "github" + }, + "original": { + "owner": "Quid2", + "repo": "flat", + "rev": "41a040c413351e021982bb78bd00f750628f8060", + "type": "github" + } + }, + "flat_3": { + "flake": false, + "locked": { + "lastModified": 1641898475, + "narHash": "sha256-D7jJ4t0T1ZvXbO61r3HQj77hZ5hWF/P1L8X9+MnfD6c=", + "owner": "Quid2", + "repo": "flat", + "rev": "41a040c413351e021982bb78bd00f750628f8060", + "type": "github" + }, + "original": { + "owner": "Quid2", + "repo": "flat", + "rev": "41a040c413351e021982bb78bd00f750628f8060", + "type": "github" + } + }, + "flat_4": { + "flake": false, + "locked": { + "lastModified": 1641898475, + "narHash": "sha256-D7jJ4t0T1ZvXbO61r3HQj77hZ5hWF/P1L8X9+MnfD6c=", + "owner": "Quid2", + "repo": "flat", + "rev": "41a040c413351e021982bb78bd00f750628f8060", + "type": "github" + }, + "original": { + "owner": "Quid2", + "repo": "flat", + "rev": "41a040c413351e021982bb78bd00f750628f8060", + "type": "github" + } + }, + "flat_5": { + "flake": false, + "locked": { + "lastModified": 1641898475, + "narHash": "sha256-D7jJ4t0T1ZvXbO61r3HQj77hZ5hWF/P1L8X9+MnfD6c=", + "owner": "Quid2", + "repo": "flat", + "rev": "41a040c413351e021982bb78bd00f750628f8060", + "type": "github" + }, + "original": { + "owner": "Quid2", + "repo": "flat", + "rev": "41a040c413351e021982bb78bd00f750628f8060", + "type": "github" + } + }, + "flat_6": { + "flake": false, + "locked": { + "lastModified": 1641898475, + "narHash": "sha256-D7jJ4t0T1ZvXbO61r3HQj77hZ5hWF/P1L8X9+MnfD6c=", + "owner": "Quid2", + "repo": "flat", + "rev": "41a040c413351e021982bb78bd00f750628f8060", + "type": "github" + }, + "original": { + "owner": "Quid2", + "repo": "flat", + "rev": "41a040c413351e021982bb78bd00f750628f8060", + "type": "github" + } + }, "foundation": { "flake": false, "locked": { @@ -703,6 +2764,91 @@ "type": "github" } }, + "foundation_2": { + "flake": false, + "locked": { + "lastModified": 1635711016, + "narHash": "sha256-5TRuljpwt50DLjyFjiFj6quFncu8RT0d8/0jlzsenuc=", + "owner": "haskell-foundation", + "repo": "foundation", + "rev": "0bb195e1fea06d144dafc5af9a0ff79af0a5f4a0", + "type": "github" + }, + "original": { + "owner": "haskell-foundation", + "repo": "foundation", + "rev": "0bb195e1fea06d144dafc5af9a0ff79af0a5f4a0", + "type": "github" + } + }, + "foundation_3": { + "flake": false, + "locked": { + "lastModified": 1635711016, + "narHash": "sha256-5TRuljpwt50DLjyFjiFj6quFncu8RT0d8/0jlzsenuc=", + "owner": "haskell-foundation", + "repo": "foundation", + "rev": "0bb195e1fea06d144dafc5af9a0ff79af0a5f4a0", + "type": "github" + }, + "original": { + "owner": "haskell-foundation", + "repo": "foundation", + "rev": "0bb195e1fea06d144dafc5af9a0ff79af0a5f4a0", + "type": "github" + } + }, + "foundation_4": { + "flake": false, + "locked": { + "lastModified": 1635711016, + "narHash": "sha256-5TRuljpwt50DLjyFjiFj6quFncu8RT0d8/0jlzsenuc=", + "owner": "haskell-foundation", + "repo": "foundation", + "rev": "0bb195e1fea06d144dafc5af9a0ff79af0a5f4a0", + "type": "github" + }, + "original": { + "owner": "haskell-foundation", + "repo": "foundation", + "rev": "0bb195e1fea06d144dafc5af9a0ff79af0a5f4a0", + "type": "github" + } + }, + "foundation_5": { + "flake": false, + "locked": { + "lastModified": 1635711016, + "narHash": "sha256-5TRuljpwt50DLjyFjiFj6quFncu8RT0d8/0jlzsenuc=", + "owner": "haskell-foundation", + "repo": "foundation", + "rev": "0bb195e1fea06d144dafc5af9a0ff79af0a5f4a0", + "type": "github" + }, + "original": { + "owner": "haskell-foundation", + "repo": "foundation", + "rev": "0bb195e1fea06d144dafc5af9a0ff79af0a5f4a0", + "type": "github" + } + }, + "foundation_6": { + "flake": false, + "locked": { + "lastModified": 1635711016, + "narHash": "sha256-5TRuljpwt50DLjyFjiFj6quFncu8RT0d8/0jlzsenuc=", + "owner": "haskell-foundation", + "repo": "foundation", + "rev": "0bb195e1fea06d144dafc5af9a0ff79af0a5f4a0", + "type": "github" + }, + "original": { + "owner": "haskell-foundation", + "repo": "foundation", + "rev": "0bb195e1fea06d144dafc5af9a0ff79af0a5f4a0", + "type": "github" + } + }, "ghc-8.6.5-iohk": { "flake": false, "locked": { @@ -771,6 +2917,91 @@ "type": "github" } }, + "ghc-8.6.5-iohk_5": { + "flake": false, + "locked": { + "lastModified": 1600920045, + "narHash": "sha256-DO6kxJz248djebZLpSzTGD6s8WRpNI9BTwUeOf5RwY8=", + "owner": "input-output-hk", + "repo": "ghc", + "rev": "95713a6ecce4551240da7c96b6176f980af75cae", + "type": "github" + }, + "original": { + "owner": "input-output-hk", + "ref": "release/8.6.5-iohk", + "repo": "ghc", + "type": "github" + } + }, + "ghc-8.6.5-iohk_6": { + "flake": false, + "locked": { + "lastModified": 1600920045, + "narHash": "sha256-DO6kxJz248djebZLpSzTGD6s8WRpNI9BTwUeOf5RwY8=", + "owner": "input-output-hk", + "repo": "ghc", + "rev": "95713a6ecce4551240da7c96b6176f980af75cae", + "type": "github" + }, + "original": { + "owner": "input-output-hk", + "ref": "release/8.6.5-iohk", + "repo": "ghc", + "type": "github" + } + }, + "ghc-8.6.5-iohk_7": { + "flake": false, + "locked": { + "lastModified": 1600920045, + "narHash": "sha256-DO6kxJz248djebZLpSzTGD6s8WRpNI9BTwUeOf5RwY8=", + "owner": "input-output-hk", + "repo": "ghc", + "rev": "95713a6ecce4551240da7c96b6176f980af75cae", + "type": "github" + }, + "original": { + "owner": "input-output-hk", + "ref": "release/8.6.5-iohk", + "repo": "ghc", + "type": "github" + } + }, + "ghc-8.6.5-iohk_8": { + "flake": false, + "locked": { + "lastModified": 1600920045, + "narHash": "sha256-DO6kxJz248djebZLpSzTGD6s8WRpNI9BTwUeOf5RwY8=", + "owner": "input-output-hk", + "repo": "ghc", + "rev": "95713a6ecce4551240da7c96b6176f980af75cae", + "type": "github" + }, + "original": { + "owner": "input-output-hk", + "ref": "release/8.6.5-iohk", + "repo": "ghc", + "type": "github" + } + }, + "ghc-8.6.5-iohk_9": { + "flake": false, + "locked": { + "lastModified": 1600920045, + "narHash": "sha256-DO6kxJz248djebZLpSzTGD6s8WRpNI9BTwUeOf5RwY8=", + "owner": "input-output-hk", + "repo": "ghc", + "rev": "95713a6ecce4551240da7c96b6176f980af75cae", + "type": "github" + }, + "original": { + "owner": "input-output-hk", + "ref": "release/8.6.5-iohk", + "repo": "ghc", + "type": "github" + } + }, "gitignore-nix": { "flake": false, "locked": { @@ -803,6 +3034,86 @@ "type": "github" } }, + "gitignore-nix_3": { + "flake": false, + "locked": { + "lastModified": 1611672876, + "narHash": "sha256-qHu3uZ/o9jBHiA3MEKHJ06k7w4heOhA+4HCSIvflRxo=", + "owner": "hercules-ci", + "repo": "gitignore.nix", + "rev": "211907489e9f198594c0eb0ca9256a1949c9d412", + "type": "github" + }, + "original": { + "owner": "hercules-ci", + "repo": "gitignore.nix", + "type": "github" + } + }, + "gitignore-nix_4": { + "flake": false, + "locked": { + "lastModified": 1611672876, + "narHash": "sha256-qHu3uZ/o9jBHiA3MEKHJ06k7w4heOhA+4HCSIvflRxo=", + "owner": "hercules-ci", + "repo": "gitignore.nix", + "rev": "211907489e9f198594c0eb0ca9256a1949c9d412", + "type": "github" + }, + "original": { + "owner": "hercules-ci", + "repo": "gitignore.nix", + "type": "github" + } + }, + "gitignore-nix_5": { + "flake": false, + "locked": { + "lastModified": 1611672876, + "narHash": "sha256-qHu3uZ/o9jBHiA3MEKHJ06k7w4heOhA+4HCSIvflRxo=", + "owner": "hercules-ci", + "repo": "gitignore.nix", + "rev": "211907489e9f198594c0eb0ca9256a1949c9d412", + "type": "github" + }, + "original": { + "owner": "hercules-ci", + "repo": "gitignore.nix", + "type": "github" + } + }, + "gitignore-nix_6": { + "flake": false, + "locked": { + "lastModified": 1611672876, + "narHash": "sha256-qHu3uZ/o9jBHiA3MEKHJ06k7w4heOhA+4HCSIvflRxo=", + "owner": "hercules-ci", + "repo": "gitignore.nix", + "rev": "211907489e9f198594c0eb0ca9256a1949c9d412", + "type": "github" + }, + "original": { + "owner": "hercules-ci", + "repo": "gitignore.nix", + "type": "github" + } + }, + "gitignore-nix_7": { + "flake": false, + "locked": { + "lastModified": 1611672876, + "narHash": "sha256-qHu3uZ/o9jBHiA3MEKHJ06k7w4heOhA+4HCSIvflRxo=", + "owner": "hercules-ci", + "repo": "gitignore.nix", + "rev": "211907489e9f198594c0eb0ca9256a1949c9d412", + "type": "github" + }, + "original": { + "owner": "hercules-ci", + "repo": "gitignore.nix", + "type": "github" + } + }, "hackage": { "flake": false, "locked": { @@ -838,11 +3149,91 @@ "hackage-nix_2": { "flake": false, "locked": { - "lastModified": 1637291070, - "narHash": "sha256-hTX2Xo36i9MR6PNwA/89C8daKjxmx5ZS5lwR2Cbp8Yo=", + "lastModified": 1644369434, + "narHash": "sha256-WqU6f1OhSM0UHXFW8Mhhvhz0tcij+NQVtmb6sW4RiFw=", "owner": "input-output-hk", "repo": "hackage.nix", - "rev": "6ea4ad5f4a5e2303cd64974329ba90ccc410a012", + "rev": "644a0d702abf84cdec62f4e620ff1034000e6146", + "type": "github" + }, + "original": { + "owner": "input-output-hk", + "repo": "hackage.nix", + "type": "github" + } + }, + "hackage-nix_3": { + "flake": false, + "locked": { + "lastModified": 1644369434, + "narHash": "sha256-WqU6f1OhSM0UHXFW8Mhhvhz0tcij+NQVtmb6sW4RiFw=", + "owner": "input-output-hk", + "repo": "hackage.nix", + "rev": "644a0d702abf84cdec62f4e620ff1034000e6146", + "type": "github" + }, + "original": { + "owner": "input-output-hk", + "repo": "hackage.nix", + "type": "github" + } + }, + "hackage-nix_4": { + "flake": false, + "locked": { + "lastModified": 1644369434, + "narHash": "sha256-WqU6f1OhSM0UHXFW8Mhhvhz0tcij+NQVtmb6sW4RiFw=", + "owner": "input-output-hk", + "repo": "hackage.nix", + "rev": "644a0d702abf84cdec62f4e620ff1034000e6146", + "type": "github" + }, + "original": { + "owner": "input-output-hk", + "repo": "hackage.nix", + "type": "github" + } + }, + "hackage-nix_5": { + "flake": false, + "locked": { + "lastModified": 1644369434, + "narHash": "sha256-WqU6f1OhSM0UHXFW8Mhhvhz0tcij+NQVtmb6sW4RiFw=", + "owner": "input-output-hk", + "repo": "hackage.nix", + "rev": "644a0d702abf84cdec62f4e620ff1034000e6146", + "type": "github" + }, + "original": { + "owner": "input-output-hk", + "repo": "hackage.nix", + "type": "github" + } + }, + "hackage-nix_6": { + "flake": false, + "locked": { + "lastModified": 1644369434, + "narHash": "sha256-WqU6f1OhSM0UHXFW8Mhhvhz0tcij+NQVtmb6sW4RiFw=", + "owner": "input-output-hk", + "repo": "hackage.nix", + "rev": "644a0d702abf84cdec62f4e620ff1034000e6146", + "type": "github" + }, + "original": { + "owner": "input-output-hk", + "repo": "hackage.nix", + "type": "github" + } + }, + "hackage-nix_7": { + "flake": false, + "locked": { + "lastModified": 1644369434, + "narHash": "sha256-WqU6f1OhSM0UHXFW8Mhhvhz0tcij+NQVtmb6sW4RiFw=", + "owner": "input-output-hk", + "repo": "hackage.nix", + "rev": "644a0d702abf84cdec62f4e620ff1034000e6146", "type": "github" }, "original": { @@ -870,11 +3261,11 @@ "hackage_3": { "flake": false, "locked": { - "lastModified": 1642554756, - "narHash": "sha256-1+SN+z80HgKYshlCf8dRxwRojQzuwwsQ5uq14N/JP1Y=", + "lastModified": 1644887696, + "narHash": "sha256-o4gltv4npUl7+1gEQIcrRqZniwqC9kK8QsPaftlrawc=", "owner": "input-output-hk", "repo": "hackage.nix", - "rev": "f9d5e67ca90926b244c0ad68815371d37582a149", + "rev": "6ff64aa49b88e75dd6e0bbd2823c2a92c9174fa5", "type": "github" }, "original": { @@ -886,11 +3277,91 @@ "hackage_4": { "flake": false, "locked": { - "lastModified": 1652404611, - "narHash": "sha256-yfRc3lkxA7k3McDC6uqkj1VLPtl8XmrCJD6UiLm+rbw=", + "lastModified": 1644887696, + "narHash": "sha256-o4gltv4npUl7+1gEQIcrRqZniwqC9kK8QsPaftlrawc=", "owner": "input-output-hk", "repo": "hackage.nix", - "rev": "d1d2ce6bb4bf964e43e015409432748a30960d8d", + "rev": "6ff64aa49b88e75dd6e0bbd2823c2a92c9174fa5", + "type": "github" + }, + "original": { + "owner": "input-output-hk", + "repo": "hackage.nix", + "type": "github" + } + }, + "hackage_5": { + "flake": false, + "locked": { + "lastModified": 1644887696, + "narHash": "sha256-o4gltv4npUl7+1gEQIcrRqZniwqC9kK8QsPaftlrawc=", + "owner": "input-output-hk", + "repo": "hackage.nix", + "rev": "6ff64aa49b88e75dd6e0bbd2823c2a92c9174fa5", + "type": "github" + }, + "original": { + "owner": "input-output-hk", + "repo": "hackage.nix", + "type": "github" + } + }, + "hackage_6": { + "flake": false, + "locked": { + "lastModified": 1644887696, + "narHash": "sha256-o4gltv4npUl7+1gEQIcrRqZniwqC9kK8QsPaftlrawc=", + "owner": "input-output-hk", + "repo": "hackage.nix", + "rev": "6ff64aa49b88e75dd6e0bbd2823c2a92c9174fa5", + "type": "github" + }, + "original": { + "owner": "input-output-hk", + "repo": "hackage.nix", + "type": "github" + } + }, + "hackage_7": { + "flake": false, + "locked": { + "lastModified": 1644887696, + "narHash": "sha256-o4gltv4npUl7+1gEQIcrRqZniwqC9kK8QsPaftlrawc=", + "owner": "input-output-hk", + "repo": "hackage.nix", + "rev": "6ff64aa49b88e75dd6e0bbd2823c2a92c9174fa5", + "type": "github" + }, + "original": { + "owner": "input-output-hk", + "repo": "hackage.nix", + "type": "github" + } + }, + "hackage_8": { + "flake": false, + "locked": { + "lastModified": 1644887696, + "narHash": "sha256-o4gltv4npUl7+1gEQIcrRqZniwqC9kK8QsPaftlrawc=", + "owner": "input-output-hk", + "repo": "hackage.nix", + "rev": "6ff64aa49b88e75dd6e0bbd2823c2a92c9174fa5", + "type": "github" + }, + "original": { + "owner": "input-output-hk", + "repo": "hackage.nix", + "type": "github" + } + }, + "hackage_9": { + "flake": false, + "locked": { + "lastModified": 1633396333, + "narHash": "sha256-mq7OoYa7ODDoKzUxR8xuEtQ0F0LO9I5uZG9DTZY+A/U=", + "owner": "input-output-hk", + "repo": "hackage.nix", + "rev": "0b33cf7ca5f152a6b3acda375433a6bc86f8d3e7", "type": "github" }, "original": { @@ -916,14 +3387,80 @@ "type": "github" } }, + "haskell-language-server_10": { + "flake": false, + "locked": { + "lastModified": 1645014262, + "narHash": "sha256-f49So1teiroV+S7sbGTK4AhzUOXpoiQ26/fTjdIKkqc=", + "owner": "haskell", + "repo": "haskell-language-server", + "rev": "96ea854debd92f9a54e2270b9b9a080c0ce6f3d1", + "type": "github" + }, + "original": { + "owner": "haskell", + "repo": "haskell-language-server", + "type": "github" + } + }, + "haskell-language-server_11": { + "flake": false, + "locked": { + "lastModified": 1643835246, + "narHash": "sha256-5LQHcQmi3mUGRgJu+X/m3jeM3kdkYjLD+KwgnxBlbeU=", + "owner": "haskell", + "repo": "haskell-language-server", + "rev": "024ddc8b3904f8b8e8fe67ba6b9ebd8a4bd7ce76", + "type": "github" + }, + "original": { + "owner": "haskell", + "ref": "1.6.1.1", + "repo": "haskell-language-server", + "type": "github" + } + }, + "haskell-language-server_12": { + "flake": false, + "locked": { + "lastModified": 1645014262, + "narHash": "sha256-f49So1teiroV+S7sbGTK4AhzUOXpoiQ26/fTjdIKkqc=", + "owner": "haskell", + "repo": "haskell-language-server", + "rev": "96ea854debd92f9a54e2270b9b9a080c0ce6f3d1", + "type": "github" + }, + "original": { + "owner": "haskell", + "repo": "haskell-language-server", + "type": "github" + } + }, + "haskell-language-server_13": { + "flake": false, + "locked": { + "lastModified": 1643835246, + "narHash": "sha256-5LQHcQmi3mUGRgJu+X/m3jeM3kdkYjLD+KwgnxBlbeU=", + "owner": "haskell", + "repo": "haskell-language-server", + "rev": "024ddc8b3904f8b8e8fe67ba6b9ebd8a4bd7ce76", + "type": "github" + }, + "original": { + "owner": "haskell", + "ref": "1.6.1.1", + "repo": "haskell-language-server", + "type": "github" + } + }, "haskell-language-server_2": { "flake": false, "locked": { - "lastModified": 1642772345, - "narHash": "sha256-fjdNOcd0S35OAvMZu81/im32B7hSIimjs08VKQA58Mw=", + "lastModified": 1645014262, + "narHash": "sha256-f49So1teiroV+S7sbGTK4AhzUOXpoiQ26/fTjdIKkqc=", "owner": "haskell", "repo": "haskell-language-server", - "rev": "f0bbc390b995953885506b755f4e4b5c6af618fb", + "rev": "96ea854debd92f9a54e2270b9b9a080c0ce6f3d1", "type": "github" }, "original": { @@ -949,6 +3486,105 @@ "type": "github" } }, + "haskell-language-server_4": { + "flake": false, + "locked": { + "lastModified": 1645014262, + "narHash": "sha256-f49So1teiroV+S7sbGTK4AhzUOXpoiQ26/fTjdIKkqc=", + "owner": "haskell", + "repo": "haskell-language-server", + "rev": "96ea854debd92f9a54e2270b9b9a080c0ce6f3d1", + "type": "github" + }, + "original": { + "owner": "haskell", + "repo": "haskell-language-server", + "type": "github" + } + }, + "haskell-language-server_5": { + "flake": false, + "locked": { + "lastModified": 1643835246, + "narHash": "sha256-5LQHcQmi3mUGRgJu+X/m3jeM3kdkYjLD+KwgnxBlbeU=", + "owner": "haskell", + "repo": "haskell-language-server", + "rev": "024ddc8b3904f8b8e8fe67ba6b9ebd8a4bd7ce76", + "type": "github" + }, + "original": { + "owner": "haskell", + "ref": "1.6.1.1", + "repo": "haskell-language-server", + "type": "github" + } + }, + "haskell-language-server_6": { + "flake": false, + "locked": { + "lastModified": 1645014262, + "narHash": "sha256-f49So1teiroV+S7sbGTK4AhzUOXpoiQ26/fTjdIKkqc=", + "owner": "haskell", + "repo": "haskell-language-server", + "rev": "96ea854debd92f9a54e2270b9b9a080c0ce6f3d1", + "type": "github" + }, + "original": { + "owner": "haskell", + "repo": "haskell-language-server", + "type": "github" + } + }, + "haskell-language-server_7": { + "flake": false, + "locked": { + "lastModified": 1643835246, + "narHash": "sha256-5LQHcQmi3mUGRgJu+X/m3jeM3kdkYjLD+KwgnxBlbeU=", + "owner": "haskell", + "repo": "haskell-language-server", + "rev": "024ddc8b3904f8b8e8fe67ba6b9ebd8a4bd7ce76", + "type": "github" + }, + "original": { + "owner": "haskell", + "ref": "1.6.1.1", + "repo": "haskell-language-server", + "type": "github" + } + }, + "haskell-language-server_8": { + "flake": false, + "locked": { + "lastModified": 1645014262, + "narHash": "sha256-f49So1teiroV+S7sbGTK4AhzUOXpoiQ26/fTjdIKkqc=", + "owner": "haskell", + "repo": "haskell-language-server", + "rev": "96ea854debd92f9a54e2270b9b9a080c0ce6f3d1", + "type": "github" + }, + "original": { + "owner": "haskell", + "repo": "haskell-language-server", + "type": "github" + } + }, + "haskell-language-server_9": { + "flake": false, + "locked": { + "lastModified": 1643835246, + "narHash": "sha256-5LQHcQmi3mUGRgJu+X/m3jeM3kdkYjLD+KwgnxBlbeU=", + "owner": "haskell", + "repo": "haskell-language-server", + "rev": "024ddc8b3904f8b8e8fe67ba6b9ebd8a4bd7ce76", + "type": "github" + }, + "original": { + "owner": "haskell", + "ref": "1.6.1.1", + "repo": "haskell-language-server", + "type": "github" + } + }, "haskell-nix": { "inputs": { "HTTP": "HTTP", @@ -987,6 +3623,176 @@ "type": "github" } }, + "haskell-nix_10": { + "inputs": { + "HTTP": "HTTP_6", + "cabal-32": "cabal-32_6", + "cabal-34": "cabal-34_6", + "cabal-36": "cabal-36_5", + "cardano-shell": "cardano-shell_6", + "flake-utils": "flake-utils_21", + "ghc-8.6.5-iohk": "ghc-8.6.5-iohk_6", + "hackage": "hackage_6", + "hpc-coveralls": "hpc-coveralls_6", + "nix-tools": "nix-tools_6", + "nixpkgs": [ + "plutarch-safe-money", + "liqwid-plutarch-extra", + "plutarch", + "haskell-nix", + "nixpkgs-unstable" + ], + "nixpkgs-2003": "nixpkgs-2003_6", + "nixpkgs-2105": "nixpkgs-2105_6", + "nixpkgs-2111": "nixpkgs-2111_10", + "nixpkgs-unstable": "nixpkgs-unstable_6", + "old-ghc-nix": "old-ghc-nix_6", + "stackage": "stackage_6" + }, + "locked": { + "lastModified": 1644944726, + "narHash": "sha256-jJWdP/3Ne1y1akC3m9rSO5ItRoBc4UTdVQZBCuPmmrM=", + "owner": "L-as", + "repo": "haskell.nix", + "rev": "45c583b5580c130487eb5a342679f0bdbc2b23fc", + "type": "github" + }, + "original": { + "owner": "L-as", + "ref": "master", + "repo": "haskell.nix", + "type": "github" + } + }, + "haskell-nix_11": { + "flake": false, + "locked": { + "lastModified": 1629380841, + "narHash": "sha256-gWOWCfX7IgVSvMMYN6rBGK6EA0pk6pmYguXzMvGte+Q=", + "owner": "input-output-hk", + "repo": "haskell.nix", + "rev": "7215f083b37741446aa325b20c8ba9f9f76015eb", + "type": "github" + }, + "original": { + "owner": "input-output-hk", + "repo": "haskell.nix", + "type": "github" + } + }, + "haskell-nix_12": { + "inputs": { + "HTTP": "HTTP_7", + "cabal-32": "cabal-32_7", + "cabal-34": "cabal-34_7", + "cabal-36": "cabal-36_6", + "cardano-shell": "cardano-shell_7", + "flake-utils": "flake-utils_27", + "ghc-8.6.5-iohk": "ghc-8.6.5-iohk_7", + "hackage": "hackage_7", + "hpc-coveralls": "hpc-coveralls_7", + "nix-tools": "nix-tools_7", + "nixpkgs": [ + "plutarch-safe-money", + "plutarch", + "haskell-nix", + "nixpkgs-unstable" + ], + "nixpkgs-2003": "nixpkgs-2003_7", + "nixpkgs-2105": "nixpkgs-2105_7", + "nixpkgs-2111": "nixpkgs-2111_12", + "nixpkgs-unstable": "nixpkgs-unstable_7", + "old-ghc-nix": "old-ghc-nix_7", + "stackage": "stackage_7" + }, + "locked": { + "lastModified": 1644944726, + "narHash": "sha256-jJWdP/3Ne1y1akC3m9rSO5ItRoBc4UTdVQZBCuPmmrM=", + "owner": "L-as", + "repo": "haskell.nix", + "rev": "45c583b5580c130487eb5a342679f0bdbc2b23fc", + "type": "github" + }, + "original": { + "owner": "L-as", + "ref": "master", + "repo": "haskell.nix", + "type": "github" + } + }, + "haskell-nix_13": { + "flake": false, + "locked": { + "lastModified": 1629380841, + "narHash": "sha256-gWOWCfX7IgVSvMMYN6rBGK6EA0pk6pmYguXzMvGte+Q=", + "owner": "input-output-hk", + "repo": "haskell.nix", + "rev": "7215f083b37741446aa325b20c8ba9f9f76015eb", + "type": "github" + }, + "original": { + "owner": "input-output-hk", + "repo": "haskell.nix", + "type": "github" + } + }, + "haskell-nix_14": { + "inputs": { + "HTTP": "HTTP_8", + "cabal-32": "cabal-32_8", + "cabal-34": "cabal-34_8", + "cabal-36": "cabal-36_7", + "cardano-shell": "cardano-shell_8", + "flake-utils": "flake-utils_33", + "ghc-8.6.5-iohk": "ghc-8.6.5-iohk_8", + "hackage": "hackage_8", + "hpc-coveralls": "hpc-coveralls_8", + "nix-tools": "nix-tools_8", + "nixpkgs": [ + "plutarch-safe-money", + "plutarch-numeric", + "plutarch", + "haskell-nix", + "nixpkgs-unstable" + ], + "nixpkgs-2003": "nixpkgs-2003_8", + "nixpkgs-2105": "nixpkgs-2105_8", + "nixpkgs-2111": "nixpkgs-2111_14", + "nixpkgs-unstable": "nixpkgs-unstable_8", + "old-ghc-nix": "old-ghc-nix_8", + "stackage": "stackage_8" + }, + "locked": { + "lastModified": 1644944726, + "narHash": "sha256-jJWdP/3Ne1y1akC3m9rSO5ItRoBc4UTdVQZBCuPmmrM=", + "owner": "L-as", + "repo": "haskell.nix", + "rev": "45c583b5580c130487eb5a342679f0bdbc2b23fc", + "type": "github" + }, + "original": { + "owner": "L-as", + "ref": "master", + "repo": "haskell.nix", + "type": "github" + } + }, + "haskell-nix_15": { + "flake": false, + "locked": { + "lastModified": 1629380841, + "narHash": "sha256-gWOWCfX7IgVSvMMYN6rBGK6EA0pk6pmYguXzMvGte+Q=", + "owner": "input-output-hk", + "repo": "haskell.nix", + "rev": "7215f083b37741446aa325b20c8ba9f9f76015eb", + "type": "github" + }, + "original": { + "owner": "input-output-hk", + "repo": "haskell.nix", + "type": "github" + } + }, "haskell-nix_2": { "inputs": { "HTTP": "HTTP_2", @@ -1047,13 +3853,16 @@ "cabal-34": "cabal-34_3", "cabal-36": "cabal-36_2", "cardano-shell": "cardano-shell_3", - "flake-utils": "flake-utils_3", + "flake-utils": "flake-utils_8", "ghc-8.6.5-iohk": "ghc-8.6.5-iohk_3", "hackage": "hackage_3", "hpc-coveralls": "hpc-coveralls_3", "nix-tools": "nix-tools_3", "nixpkgs": [ - "nixpkgs-2111" + "liqwid-plutarch-extra", + "plutarch", + "haskell-nix", + "nixpkgs-unstable" ], "nixpkgs-2003": "nixpkgs-2003_3", "nixpkgs-2105": "nixpkgs-2105_3", @@ -1063,11 +3872,11 @@ "stackage": "stackage_3" }, "locked": { - "lastModified": 1642811877, - "narHash": "sha256-7YbbFF4ISWMcs5hHDfH7GkCSccvwEwhvKZ5D74Cuajo=", + "lastModified": 1644944726, + "narHash": "sha256-jJWdP/3Ne1y1akC3m9rSO5ItRoBc4UTdVQZBCuPmmrM=", "owner": "L-as", "repo": "haskell.nix", - "rev": "ac825b91c202947ec59b1a477003564cc018fcec", + "rev": "45c583b5580c130487eb5a342679f0bdbc2b23fc", "type": "github" }, "original": { @@ -1093,22 +3902,21 @@ "type": "github" } }, - "haskellNix": { + "haskell-nix_6": { "inputs": { "HTTP": "HTTP_4", "cabal-32": "cabal-32_4", "cabal-34": "cabal-34_4", "cabal-36": "cabal-36_3", "cardano-shell": "cardano-shell_4", - "flake-utils": "flake-utils_5", + "flake-utils": "flake-utils_9", "ghc-8.6.5-iohk": "ghc-8.6.5-iohk_4", "hackage": "hackage_4", "hpc-coveralls": "hpc-coveralls_4", - "hydra": "hydra", "nix-tools": "nix-tools_4", "nixpkgs": [ - "purescript-bridge", - "haskellNix", + "plutarch", + "haskell-nix", "nixpkgs-unstable" ], "nixpkgs-2003": "nixpkgs-2003_4", @@ -1119,11 +3927,28 @@ "stackage": "stackage_4" }, "locked": { - "lastModified": 1652433679, - "narHash": "sha256-sJgwRYdMn4jq4BpRWEvOjEAJ+68Ncrwv32IHdjQAYTU=", + "lastModified": 1644944726, + "narHash": "sha256-jJWdP/3Ne1y1akC3m9rSO5ItRoBc4UTdVQZBCuPmmrM=", + "owner": "L-as", + "repo": "haskell.nix", + "rev": "45c583b5580c130487eb5a342679f0bdbc2b23fc", + "type": "github" + }, + "original": { + "owner": "L-as", + "ref": "master", + "repo": "haskell.nix", + "type": "github" + } + }, + "haskell-nix_7": { + "flake": false, + "locked": { + "lastModified": 1629380841, + "narHash": "sha256-gWOWCfX7IgVSvMMYN6rBGK6EA0pk6pmYguXzMvGte+Q=", "owner": "input-output-hk", "repo": "haskell.nix", - "rev": "b66b0445ebec8842270d91d945227898265a114a", + "rev": "7215f083b37741446aa325b20c8ba9f9f76015eb", "type": "github" }, "original": { @@ -1132,42 +3957,284 @@ "type": "github" } }, - "hercules-ci-agent": { + "haskell-nix_8": { "inputs": { - "flake-compat": "flake-compat_4", - "nix-darwin": "nix-darwin", - "nixos-20_09": "nixos-20_09", - "nixos-unstable": "nixos-unstable", - "pre-commit-hooks-nix": "pre-commit-hooks-nix_2" + "HTTP": "HTTP_5", + "cabal-32": "cabal-32_5", + "cabal-34": "cabal-34_5", + "cabal-36": "cabal-36_4", + "cardano-shell": "cardano-shell_5", + "flake-utils": "flake-utils_15", + "ghc-8.6.5-iohk": "ghc-8.6.5-iohk_5", + "hackage": "hackage_5", + "hpc-coveralls": "hpc-coveralls_5", + "nix-tools": "nix-tools_5", + "nixpkgs": [ + "plutarch-numeric", + "plutarch", + "haskell-nix", + "nixpkgs-unstable" + ], + "nixpkgs-2003": "nixpkgs-2003_5", + "nixpkgs-2105": "nixpkgs-2105_5", + "nixpkgs-2111": "nixpkgs-2111_8", + "nixpkgs-unstable": "nixpkgs-unstable_5", + "old-ghc-nix": "old-ghc-nix_5", + "stackage": "stackage_5" }, "locked": { - "lastModified": 1642766877, - "narHash": "sha256-EXvI+1cKZHWfAaRV1PrSrQe0knc4rg5vMF4qz6/5bkI=", - "owner": "hercules-ci", - "repo": "hercules-ci-agent", - "rev": "0aa916f487be7da03bc2a6dec2ac7149b05499c5", + "lastModified": 1644944726, + "narHash": "sha256-jJWdP/3Ne1y1akC3m9rSO5ItRoBc4UTdVQZBCuPmmrM=", + "owner": "L-as", + "repo": "haskell.nix", + "rev": "45c583b5580c130487eb5a342679f0bdbc2b23fc", "type": "github" }, "original": { - "owner": "hercules-ci", + "owner": "L-as", "ref": "master", - "repo": "hercules-ci-agent", + "repo": "haskell.nix", + "type": "github" + } + }, + "haskell-nix_9": { + "flake": false, + "locked": { + "lastModified": 1629380841, + "narHash": "sha256-gWOWCfX7IgVSvMMYN6rBGK6EA0pk6pmYguXzMvGte+Q=", + "owner": "input-output-hk", + "repo": "haskell.nix", + "rev": "7215f083b37741446aa325b20c8ba9f9f76015eb", + "type": "github" + }, + "original": { + "owner": "input-output-hk", + "repo": "haskell.nix", + "type": "github" + } + }, + "haskellNix": { + "inputs": { + "HTTP": "HTTP_9", + "cabal-32": "cabal-32_9", + "cabal-34": "cabal-34_9", + "cardano-shell": "cardano-shell_9", + "flake-utils": "flake-utils_35", + "ghc-8.6.5-iohk": "ghc-8.6.5-iohk_9", + "hackage": "hackage_9", + "hpc-coveralls": "hpc-coveralls_9", + "nix-tools": "nix-tools_9", + "nixpkgs": [ + "purescript-bridge", + "haskellNix", + "nixpkgs-2105" + ], + "nixpkgs-2003": "nixpkgs-2003_9", + "nixpkgs-2009": "nixpkgs-2009", + "nixpkgs-2105": "nixpkgs-2105_9", + "nixpkgs-unstable": "nixpkgs-unstable_9", + "old-ghc-nix": "old-ghc-nix_9", + "stackage": "stackage_9" + }, + "locked": { + "lastModified": 1633435111, + "narHash": "sha256-0wYA9+2BZXFGj241f4W66nbvP2s+bbikOa39CZQP05A=", + "owner": "input-output-hk", + "repo": "haskell.nix", + "rev": "56f22053e647efcad0b5ee9c32334d5d4214bcde", + "type": "github" + }, + "original": { + "owner": "input-output-hk", + "repo": "haskell.nix", + "type": "github" + } + }, + "heist": { + "flake": false, + "locked": { + "lastModified": 1649279862, + "narHash": "sha256-YPD7Qv1ZcXM4uAlsZ2P/2CKen4H2OY3VHHGluYFVulg=", + "owner": "srid", + "repo": "heist", + "rev": "085c7ab88b73079de27c8def27d67f03853fde05", + "type": "github" + }, + "original": { + "owner": "srid", + "ref": "emanote-release--ghc9", + "repo": "heist", + "type": "github" + } + }, + "heist_2": { + "flake": false, + "locked": { + "lastModified": 1649279862, + "narHash": "sha256-YPD7Qv1ZcXM4uAlsZ2P/2CKen4H2OY3VHHGluYFVulg=", + "owner": "srid", + "repo": "heist", + "rev": "085c7ab88b73079de27c8def27d67f03853fde05", + "type": "github" + }, + "original": { + "owner": "srid", + "ref": "emanote-release--ghc9", + "repo": "heist", + "type": "github" + } + }, + "heist_3": { + "flake": false, + "locked": { + "lastModified": 1649279862, + "narHash": "sha256-YPD7Qv1ZcXM4uAlsZ2P/2CKen4H2OY3VHHGluYFVulg=", + "owner": "srid", + "repo": "heist", + "rev": "085c7ab88b73079de27c8def27d67f03853fde05", + "type": "github" + }, + "original": { + "owner": "srid", + "ref": "emanote-release--ghc9", + "repo": "heist", + "type": "github" + } + }, + "heist_4": { + "flake": false, + "locked": { + "lastModified": 1649279862, + "narHash": "sha256-YPD7Qv1ZcXM4uAlsZ2P/2CKen4H2OY3VHHGluYFVulg=", + "owner": "srid", + "repo": "heist", + "rev": "085c7ab88b73079de27c8def27d67f03853fde05", + "type": "github" + }, + "original": { + "owner": "srid", + "ref": "emanote-release--ghc9", + "repo": "heist", + "type": "github" + } + }, + "heist_5": { + "flake": false, + "locked": { + "lastModified": 1649279862, + "narHash": "sha256-YPD7Qv1ZcXM4uAlsZ2P/2CKen4H2OY3VHHGluYFVulg=", + "owner": "srid", + "repo": "heist", + "rev": "085c7ab88b73079de27c8def27d67f03853fde05", + "type": "github" + }, + "original": { + "owner": "srid", + "ref": "emanote-release--ghc9", + "repo": "heist", "type": "github" } }, "hercules-ci-effects": { "inputs": { - "flake-compat": "flake-compat_3", - "hercules-ci-agent": "hercules-ci-agent", - "nixpkgs": "nixpkgs_3", - "nixpkgs-nixops": "nixpkgs-nixops" + "nixpkgs": "nixpkgs_6" }, "locked": { - "lastModified": 1641914281, - "narHash": "sha256-3qJ6tDPkrsFqm4E74JROZlQbnKKLNTHV7QOD1LdcVqs=", + "lastModified": 1647711660, + "narHash": "sha256-ZoV/oAH8g4NYeTzC7OCZnlM7l0hNBs0nUHf4l1+lmDc=", "owner": "hercules-ci", "repo": "hercules-ci-effects", - "rev": "2e165352d92782e7ae149f4f1a9b3174f718a3af", + "rev": "d17e41cfb454d07f5d8d3b667bf45b079d868541", + "type": "github" + }, + "original": { + "owner": "hercules-ci", + "repo": "hercules-ci-effects", + "type": "github" + } + }, + "hercules-ci-effects_2": { + "inputs": { + "nixpkgs": "nixpkgs_8" + }, + "locked": { + "lastModified": 1647711660, + "narHash": "sha256-ZoV/oAH8g4NYeTzC7OCZnlM7l0hNBs0nUHf4l1+lmDc=", + "owner": "hercules-ci", + "repo": "hercules-ci-effects", + "rev": "d17e41cfb454d07f5d8d3b667bf45b079d868541", + "type": "github" + }, + "original": { + "owner": "hercules-ci", + "repo": "hercules-ci-effects", + "type": "github" + } + }, + "hercules-ci-effects_3": { + "inputs": { + "nixpkgs": "nixpkgs_14" + }, + "locked": { + "lastModified": 1647711660, + "narHash": "sha256-ZoV/oAH8g4NYeTzC7OCZnlM7l0hNBs0nUHf4l1+lmDc=", + "owner": "hercules-ci", + "repo": "hercules-ci-effects", + "rev": "d17e41cfb454d07f5d8d3b667bf45b079d868541", + "type": "github" + }, + "original": { + "owner": "hercules-ci", + "repo": "hercules-ci-effects", + "type": "github" + } + }, + "hercules-ci-effects_4": { + "inputs": { + "nixpkgs": "nixpkgs_20" + }, + "locked": { + "lastModified": 1647711660, + "narHash": "sha256-ZoV/oAH8g4NYeTzC7OCZnlM7l0hNBs0nUHf4l1+lmDc=", + "owner": "hercules-ci", + "repo": "hercules-ci-effects", + "rev": "d17e41cfb454d07f5d8d3b667bf45b079d868541", + "type": "github" + }, + "original": { + "owner": "hercules-ci", + "repo": "hercules-ci-effects", + "type": "github" + } + }, + "hercules-ci-effects_5": { + "inputs": { + "nixpkgs": "nixpkgs_26" + }, + "locked": { + "lastModified": 1647711660, + "narHash": "sha256-ZoV/oAH8g4NYeTzC7OCZnlM7l0hNBs0nUHf4l1+lmDc=", + "owner": "hercules-ci", + "repo": "hercules-ci-effects", + "rev": "d17e41cfb454d07f5d8d3b667bf45b079d868541", + "type": "github" + }, + "original": { + "owner": "hercules-ci", + "repo": "hercules-ci-effects", + "type": "github" + } + }, + "hercules-ci-effects_6": { + "inputs": { + "nixpkgs": "nixpkgs_32" + }, + "locked": { + "lastModified": 1647711660, + "narHash": "sha256-ZoV/oAH8g4NYeTzC7OCZnlM7l0hNBs0nUHf4l1+lmDc=", + "owner": "hercules-ci", + "repo": "hercules-ci-effects", + "rev": "d17e41cfb454d07f5d8d3b667bf45b079d868541", "type": "github" }, "original": { @@ -1240,6 +4307,86 @@ "type": "github" } }, + "hpc-coveralls_5": { + "flake": false, + "locked": { + "lastModified": 1607498076, + "narHash": "sha256-8uqsEtivphgZWYeUo5RDUhp6bO9j2vaaProQxHBltQk=", + "owner": "sevanspowell", + "repo": "hpc-coveralls", + "rev": "14df0f7d229f4cd2e79f8eabb1a740097fdfa430", + "type": "github" + }, + "original": { + "owner": "sevanspowell", + "repo": "hpc-coveralls", + "type": "github" + } + }, + "hpc-coveralls_6": { + "flake": false, + "locked": { + "lastModified": 1607498076, + "narHash": "sha256-8uqsEtivphgZWYeUo5RDUhp6bO9j2vaaProQxHBltQk=", + "owner": "sevanspowell", + "repo": "hpc-coveralls", + "rev": "14df0f7d229f4cd2e79f8eabb1a740097fdfa430", + "type": "github" + }, + "original": { + "owner": "sevanspowell", + "repo": "hpc-coveralls", + "type": "github" + } + }, + "hpc-coveralls_7": { + "flake": false, + "locked": { + "lastModified": 1607498076, + "narHash": "sha256-8uqsEtivphgZWYeUo5RDUhp6bO9j2vaaProQxHBltQk=", + "owner": "sevanspowell", + "repo": "hpc-coveralls", + "rev": "14df0f7d229f4cd2e79f8eabb1a740097fdfa430", + "type": "github" + }, + "original": { + "owner": "sevanspowell", + "repo": "hpc-coveralls", + "type": "github" + } + }, + "hpc-coveralls_8": { + "flake": false, + "locked": { + "lastModified": 1607498076, + "narHash": "sha256-8uqsEtivphgZWYeUo5RDUhp6bO9j2vaaProQxHBltQk=", + "owner": "sevanspowell", + "repo": "hpc-coveralls", + "rev": "14df0f7d229f4cd2e79f8eabb1a740097fdfa430", + "type": "github" + }, + "original": { + "owner": "sevanspowell", + "repo": "hpc-coveralls", + "type": "github" + } + }, + "hpc-coveralls_9": { + "flake": false, + "locked": { + "lastModified": 1607498076, + "narHash": "sha256-8uqsEtivphgZWYeUo5RDUhp6bO9j2vaaProQxHBltQk=", + "owner": "sevanspowell", + "repo": "hpc-coveralls", + "rev": "14df0f7d229f4cd2e79f8eabb1a740097fdfa430", + "type": "github" + }, + "original": { + "owner": "sevanspowell", + "repo": "hpc-coveralls", + "type": "github" + } + }, "hs-memory": { "flake": false, "locked": { @@ -1257,6 +4404,91 @@ "type": "github" } }, + "hs-memory_2": { + "flake": false, + "locked": { + "lastModified": 1636757734, + "narHash": "sha256-DIlt0NpFUx8IUeTcgZNBJWWfyNaKv5ZKYw1K9aLvxBs=", + "owner": "vincenthz", + "repo": "hs-memory", + "rev": "3cf661a8a9a8ac028df77daa88e8d65c55a3347a", + "type": "github" + }, + "original": { + "owner": "vincenthz", + "repo": "hs-memory", + "rev": "3cf661a8a9a8ac028df77daa88e8d65c55a3347a", + "type": "github" + } + }, + "hs-memory_3": { + "flake": false, + "locked": { + "lastModified": 1636757734, + "narHash": "sha256-DIlt0NpFUx8IUeTcgZNBJWWfyNaKv5ZKYw1K9aLvxBs=", + "owner": "vincenthz", + "repo": "hs-memory", + "rev": "3cf661a8a9a8ac028df77daa88e8d65c55a3347a", + "type": "github" + }, + "original": { + "owner": "vincenthz", + "repo": "hs-memory", + "rev": "3cf661a8a9a8ac028df77daa88e8d65c55a3347a", + "type": "github" + } + }, + "hs-memory_4": { + "flake": false, + "locked": { + "lastModified": 1636757734, + "narHash": "sha256-DIlt0NpFUx8IUeTcgZNBJWWfyNaKv5ZKYw1K9aLvxBs=", + "owner": "vincenthz", + "repo": "hs-memory", + "rev": "3cf661a8a9a8ac028df77daa88e8d65c55a3347a", + "type": "github" + }, + "original": { + "owner": "vincenthz", + "repo": "hs-memory", + "rev": "3cf661a8a9a8ac028df77daa88e8d65c55a3347a", + "type": "github" + } + }, + "hs-memory_5": { + "flake": false, + "locked": { + "lastModified": 1636757734, + "narHash": "sha256-DIlt0NpFUx8IUeTcgZNBJWWfyNaKv5ZKYw1K9aLvxBs=", + "owner": "vincenthz", + "repo": "hs-memory", + "rev": "3cf661a8a9a8ac028df77daa88e8d65c55a3347a", + "type": "github" + }, + "original": { + "owner": "vincenthz", + "repo": "hs-memory", + "rev": "3cf661a8a9a8ac028df77daa88e8d65c55a3347a", + "type": "github" + } + }, + "hs-memory_6": { + "flake": false, + "locked": { + "lastModified": 1636757734, + "narHash": "sha256-DIlt0NpFUx8IUeTcgZNBJWWfyNaKv5ZKYw1K9aLvxBs=", + "owner": "vincenthz", + "repo": "hs-memory", + "rev": "3cf661a8a9a8ac028df77daa88e8d65c55a3347a", + "type": "github" + }, + "original": { + "owner": "vincenthz", + "repo": "hs-memory", + "rev": "3cf661a8a9a8ac028df77daa88e8d65c55a3347a", + "type": "github" + } + }, "hspec": { "flake": false, "locked": { @@ -1290,6 +4522,86 @@ "type": "github" } }, + "hspec-golden_2": { + "flake": false, + "locked": { + "lastModified": 1648755064, + "narHash": "sha256-5a6BksZx00o2iL0Ei/L1Kkou2BsnsIagN+tTmqYyKfs=", + "owner": "stackbuilders", + "repo": "hspec-golden", + "rev": "4b0ad56b2de0254a7b1e0feda917656f78a5bcda", + "type": "github" + }, + "original": { + "owner": "stackbuilders", + "repo": "hspec-golden", + "type": "github" + } + }, + "hspec-golden_3": { + "flake": false, + "locked": { + "lastModified": 1648755064, + "narHash": "sha256-5a6BksZx00o2iL0Ei/L1Kkou2BsnsIagN+tTmqYyKfs=", + "owner": "stackbuilders", + "repo": "hspec-golden", + "rev": "4b0ad56b2de0254a7b1e0feda917656f78a5bcda", + "type": "github" + }, + "original": { + "owner": "stackbuilders", + "repo": "hspec-golden", + "type": "github" + } + }, + "hspec-golden_4": { + "flake": false, + "locked": { + "lastModified": 1648755064, + "narHash": "sha256-5a6BksZx00o2iL0Ei/L1Kkou2BsnsIagN+tTmqYyKfs=", + "owner": "stackbuilders", + "repo": "hspec-golden", + "rev": "4b0ad56b2de0254a7b1e0feda917656f78a5bcda", + "type": "github" + }, + "original": { + "owner": "stackbuilders", + "repo": "hspec-golden", + "type": "github" + } + }, + "hspec-golden_5": { + "flake": false, + "locked": { + "lastModified": 1648755064, + "narHash": "sha256-5a6BksZx00o2iL0Ei/L1Kkou2BsnsIagN+tTmqYyKfs=", + "owner": "stackbuilders", + "repo": "hspec-golden", + "rev": "4b0ad56b2de0254a7b1e0feda917656f78a5bcda", + "type": "github" + }, + "original": { + "owner": "stackbuilders", + "repo": "hspec-golden", + "type": "github" + } + }, + "hspec-golden_6": { + "flake": false, + "locked": { + "lastModified": 1648755064, + "narHash": "sha256-5a6BksZx00o2iL0Ei/L1Kkou2BsnsIagN+tTmqYyKfs=", + "owner": "stackbuilders", + "repo": "hspec-golden", + "rev": "4b0ad56b2de0254a7b1e0feda917656f78a5bcda", + "type": "github" + }, + "original": { + "owner": "stackbuilders", + "repo": "hspec-golden", + "type": "github" + } + }, "hspec-hedgehog": { "flake": false, "locked": { @@ -1306,28 +4618,169 @@ "type": "github" } }, - "hydra": { - "inputs": { - "nix": "nix", - "nixpkgs": [ - "purescript-bridge", - "haskellNix", - "hydra", - "nix", - "nixpkgs" - ] - }, + "hspec-hedgehog_2": { + "flake": false, "locked": { - "lastModified": 1646878427, - "narHash": "sha256-KtbrofMtN8GlM7D+n90kixr7QpSlVmdN+vK5CA/aRzc=", - "owner": "NixOS", - "repo": "hydra", - "rev": "28b682b85b7efc5cf7974065792a1f22203a5927", + "lastModified": 1602603478, + "narHash": "sha256-XnS3zjQ7eh3iBOWq+Z/YcwrfWI55hV6k8LsZ8qm/qOc=", + "owner": "parsonsmatt", + "repo": "hspec-hedgehog", + "rev": "eb617d854542510f0129acdea4bf52e50b13042e", "type": "github" }, "original": { - "id": "hydra", - "type": "indirect" + "owner": "parsonsmatt", + "repo": "hspec-hedgehog", + "type": "github" + } + }, + "hspec-hedgehog_3": { + "flake": false, + "locked": { + "lastModified": 1602603478, + "narHash": "sha256-XnS3zjQ7eh3iBOWq+Z/YcwrfWI55hV6k8LsZ8qm/qOc=", + "owner": "parsonsmatt", + "repo": "hspec-hedgehog", + "rev": "eb617d854542510f0129acdea4bf52e50b13042e", + "type": "github" + }, + "original": { + "owner": "parsonsmatt", + "repo": "hspec-hedgehog", + "type": "github" + } + }, + "hspec-hedgehog_4": { + "flake": false, + "locked": { + "lastModified": 1602603478, + "narHash": "sha256-XnS3zjQ7eh3iBOWq+Z/YcwrfWI55hV6k8LsZ8qm/qOc=", + "owner": "parsonsmatt", + "repo": "hspec-hedgehog", + "rev": "eb617d854542510f0129acdea4bf52e50b13042e", + "type": "github" + }, + "original": { + "owner": "parsonsmatt", + "repo": "hspec-hedgehog", + "type": "github" + } + }, + "hspec-hedgehog_5": { + "flake": false, + "locked": { + "lastModified": 1602603478, + "narHash": "sha256-XnS3zjQ7eh3iBOWq+Z/YcwrfWI55hV6k8LsZ8qm/qOc=", + "owner": "parsonsmatt", + "repo": "hspec-hedgehog", + "rev": "eb617d854542510f0129acdea4bf52e50b13042e", + "type": "github" + }, + "original": { + "owner": "parsonsmatt", + "repo": "hspec-hedgehog", + "type": "github" + } + }, + "hspec-hedgehog_6": { + "flake": false, + "locked": { + "lastModified": 1602603478, + "narHash": "sha256-XnS3zjQ7eh3iBOWq+Z/YcwrfWI55hV6k8LsZ8qm/qOc=", + "owner": "parsonsmatt", + "repo": "hspec-hedgehog", + "rev": "eb617d854542510f0129acdea4bf52e50b13042e", + "type": "github" + }, + "original": { + "owner": "parsonsmatt", + "repo": "hspec-hedgehog", + "type": "github" + } + }, + "hspec_2": { + "flake": false, + "locked": { + "lastModified": 1649095108, + "narHash": "sha256-cPmt4hvmdh727VT6UAL8yFArmm4FAWeg3K5Qi3XtU4g=", + "owner": "srid", + "repo": "hspec", + "rev": "44f2a143e10c93df237af428457d0e4b74ae270a", + "type": "github" + }, + "original": { + "owner": "srid", + "ref": "askAncestors", + "repo": "hspec", + "type": "github" + } + }, + "hspec_3": { + "flake": false, + "locked": { + "lastModified": 1649095108, + "narHash": "sha256-cPmt4hvmdh727VT6UAL8yFArmm4FAWeg3K5Qi3XtU4g=", + "owner": "srid", + "repo": "hspec", + "rev": "44f2a143e10c93df237af428457d0e4b74ae270a", + "type": "github" + }, + "original": { + "owner": "srid", + "ref": "askAncestors", + "repo": "hspec", + "type": "github" + } + }, + "hspec_4": { + "flake": false, + "locked": { + "lastModified": 1649095108, + "narHash": "sha256-cPmt4hvmdh727VT6UAL8yFArmm4FAWeg3K5Qi3XtU4g=", + "owner": "srid", + "repo": "hspec", + "rev": "44f2a143e10c93df237af428457d0e4b74ae270a", + "type": "github" + }, + "original": { + "owner": "srid", + "ref": "askAncestors", + "repo": "hspec", + "type": "github" + } + }, + "hspec_5": { + "flake": false, + "locked": { + "lastModified": 1649095108, + "narHash": "sha256-cPmt4hvmdh727VT6UAL8yFArmm4FAWeg3K5Qi3XtU4g=", + "owner": "srid", + "repo": "hspec", + "rev": "44f2a143e10c93df237af428457d0e4b74ae270a", + "type": "github" + }, + "original": { + "owner": "srid", + "ref": "askAncestors", + "repo": "hspec", + "type": "github" + } + }, + "hspec_6": { + "flake": false, + "locked": { + "lastModified": 1649095108, + "narHash": "sha256-cPmt4hvmdh727VT6UAL8yFArmm4FAWeg3K5Qi3XtU4g=", + "owner": "srid", + "repo": "hspec", + "rev": "44f2a143e10c93df237af428457d0e4b74ae270a", + "type": "github" + }, + "original": { + "owner": "srid", + "ref": "askAncestors", + "repo": "hspec", + "type": "github" } }, "iohk-nix": { @@ -1346,14 +4799,78 @@ "type": "github" } }, + "iohk-nix_10": { + "flake": false, + "locked": { + "lastModified": 1643251385, + "narHash": "sha256-Czbd69lg0ARSZfC18V6h+gtPMioWDAEVPbiHgL2x9LM=", + "owner": "input-output-hk", + "repo": "iohk-nix", + "rev": "9d6ee3dcb3482f791e40ed991ad6fc649b343ad4", + "type": "github" + }, + "original": { + "owner": "input-output-hk", + "repo": "iohk-nix", + "type": "github" + } + }, + "iohk-nix_11": { + "flake": false, + "locked": { + "lastModified": 1626953580, + "narHash": "sha256-iEI9aTOaZMGsjWzcrctrC0usmiagwKT2v1LSDe9/tMU=", + "owner": "input-output-hk", + "repo": "iohk-nix", + "rev": "cbd497f5844249ef8fe617166337d59f2a6ebe90", + "type": "github" + }, + "original": { + "owner": "input-output-hk", + "repo": "iohk-nix", + "type": "github" + } + }, + "iohk-nix_12": { + "flake": false, + "locked": { + "lastModified": 1643251385, + "narHash": "sha256-Czbd69lg0ARSZfC18V6h+gtPMioWDAEVPbiHgL2x9LM=", + "owner": "input-output-hk", + "repo": "iohk-nix", + "rev": "9d6ee3dcb3482f791e40ed991ad6fc649b343ad4", + "type": "github" + }, + "original": { + "owner": "input-output-hk", + "repo": "iohk-nix", + "type": "github" + } + }, + "iohk-nix_13": { + "flake": false, + "locked": { + "lastModified": 1626953580, + "narHash": "sha256-iEI9aTOaZMGsjWzcrctrC0usmiagwKT2v1LSDe9/tMU=", + "owner": "input-output-hk", + "repo": "iohk-nix", + "rev": "cbd497f5844249ef8fe617166337d59f2a6ebe90", + "type": "github" + }, + "original": { + "owner": "input-output-hk", + "repo": "iohk-nix", + "type": "github" + } + }, "iohk-nix_2": { "flake": false, "locked": { - "lastModified": 1648032999, - "narHash": "sha256-3uCz+gJppvM7z6CUCkBbFSu60WgIE+e3oXwXiAiGWSY=", + "lastModified": 1643251385, + "narHash": "sha256-Czbd69lg0ARSZfC18V6h+gtPMioWDAEVPbiHgL2x9LM=", "owner": "input-output-hk", "repo": "iohk-nix", - "rev": "5e667b374153327c7bdfdbfab8ef19b1f27d4aac", + "rev": "9d6ee3dcb3482f791e40ed991ad6fc649b343ad4", "type": "github" }, "original": { @@ -1378,61 +4895,376 @@ "type": "github" } }, - "lowdown-src": { + "iohk-nix_4": { "flake": false, "locked": { - "lastModified": 1633514407, - "narHash": "sha256-Dw32tiMjdK9t3ETl5fzGrutQTzh2rufgZV4A/BbxuD4=", - "owner": "kristapsdz", - "repo": "lowdown", - "rev": "d2c2b44ff6c27b936ec27358a2653caaef8f73b8", + "lastModified": 1643251385, + "narHash": "sha256-Czbd69lg0ARSZfC18V6h+gtPMioWDAEVPbiHgL2x9LM=", + "owner": "input-output-hk", + "repo": "iohk-nix", + "rev": "9d6ee3dcb3482f791e40ed991ad6fc649b343ad4", "type": "github" }, "original": { - "owner": "kristapsdz", - "repo": "lowdown", + "owner": "input-output-hk", + "repo": "iohk-nix", "type": "github" } }, - "nix": { - "inputs": { - "lowdown-src": "lowdown-src", - "nixpkgs": "nixpkgs_5", - "nixpkgs-regression": "nixpkgs-regression" - }, + "iohk-nix_5": { + "flake": false, "locked": { - "lastModified": 1643066034, - "narHash": "sha256-xEPeMcNJVOeZtoN+d+aRwolpW8mFSEQx76HTRdlhPhg=", - "owner": "NixOS", - "repo": "nix", - "rev": "a1cd7e58606a41fcf62bf8637804cf8306f17f62", + "lastModified": 1626953580, + "narHash": "sha256-iEI9aTOaZMGsjWzcrctrC0usmiagwKT2v1LSDe9/tMU=", + "owner": "input-output-hk", + "repo": "iohk-nix", + "rev": "cbd497f5844249ef8fe617166337d59f2a6ebe90", "type": "github" }, "original": { - "owner": "NixOS", - "ref": "2.6.0", - "repo": "nix", + "owner": "input-output-hk", + "repo": "iohk-nix", "type": "github" } }, - "nix-darwin": { - "inputs": { - "nixpkgs": "nixpkgs_2" - }, + "iohk-nix_6": { + "flake": false, "locked": { - "lastModified": 1622060422, - "narHash": "sha256-hPVlvrAyf6zL7tTx0lpK+tMxEfZeMiIZ/A2xaJ41WOY=", - "owner": "LnL7", - "repo": "nix-darwin", - "rev": "007d700e644ac588ad6668e6439950a5b6e2ff64", + "lastModified": 1643251385, + "narHash": "sha256-Czbd69lg0ARSZfC18V6h+gtPMioWDAEVPbiHgL2x9LM=", + "owner": "input-output-hk", + "repo": "iohk-nix", + "rev": "9d6ee3dcb3482f791e40ed991ad6fc649b343ad4", "type": "github" }, "original": { - "owner": "LnL7", - "repo": "nix-darwin", + "owner": "input-output-hk", + "repo": "iohk-nix", "type": "github" } }, + "iohk-nix_7": { + "flake": false, + "locked": { + "lastModified": 1626953580, + "narHash": "sha256-iEI9aTOaZMGsjWzcrctrC0usmiagwKT2v1LSDe9/tMU=", + "owner": "input-output-hk", + "repo": "iohk-nix", + "rev": "cbd497f5844249ef8fe617166337d59f2a6ebe90", + "type": "github" + }, + "original": { + "owner": "input-output-hk", + "repo": "iohk-nix", + "type": "github" + } + }, + "iohk-nix_8": { + "flake": false, + "locked": { + "lastModified": 1643251385, + "narHash": "sha256-Czbd69lg0ARSZfC18V6h+gtPMioWDAEVPbiHgL2x9LM=", + "owner": "input-output-hk", + "repo": "iohk-nix", + "rev": "9d6ee3dcb3482f791e40ed991ad6fc649b343ad4", + "type": "github" + }, + "original": { + "owner": "input-output-hk", + "repo": "iohk-nix", + "type": "github" + } + }, + "iohk-nix_9": { + "flake": false, + "locked": { + "lastModified": 1626953580, + "narHash": "sha256-iEI9aTOaZMGsjWzcrctrC0usmiagwKT2v1LSDe9/tMU=", + "owner": "input-output-hk", + "repo": "iohk-nix", + "rev": "cbd497f5844249ef8fe617166337d59f2a6ebe90", + "type": "github" + }, + "original": { + "owner": "input-output-hk", + "repo": "iohk-nix", + "type": "github" + } + }, + "ixset-typed": { + "flake": false, + "locked": { + "lastModified": 1639657838, + "narHash": "sha256-pI2dzJfkR10CHDEX6TV2E01pqcGkj7kheROw05MRTR8=", + "owner": "well-typed", + "repo": "ixset-typed", + "rev": "6cf16f77ae173311742623e5f0b308a21b337aa7", + "type": "github" + }, + "original": { + "owner": "well-typed", + "repo": "ixset-typed", + "type": "github" + } + }, + "ixset-typed_2": { + "flake": false, + "locked": { + "lastModified": 1639657838, + "narHash": "sha256-pI2dzJfkR10CHDEX6TV2E01pqcGkj7kheROw05MRTR8=", + "owner": "well-typed", + "repo": "ixset-typed", + "rev": "6cf16f77ae173311742623e5f0b308a21b337aa7", + "type": "github" + }, + "original": { + "owner": "well-typed", + "repo": "ixset-typed", + "type": "github" + } + }, + "ixset-typed_3": { + "flake": false, + "locked": { + "lastModified": 1639657838, + "narHash": "sha256-pI2dzJfkR10CHDEX6TV2E01pqcGkj7kheROw05MRTR8=", + "owner": "well-typed", + "repo": "ixset-typed", + "rev": "6cf16f77ae173311742623e5f0b308a21b337aa7", + "type": "github" + }, + "original": { + "owner": "well-typed", + "repo": "ixset-typed", + "type": "github" + } + }, + "ixset-typed_4": { + "flake": false, + "locked": { + "lastModified": 1639657838, + "narHash": "sha256-pI2dzJfkR10CHDEX6TV2E01pqcGkj7kheROw05MRTR8=", + "owner": "well-typed", + "repo": "ixset-typed", + "rev": "6cf16f77ae173311742623e5f0b308a21b337aa7", + "type": "github" + }, + "original": { + "owner": "well-typed", + "repo": "ixset-typed", + "type": "github" + } + }, + "ixset-typed_5": { + "flake": false, + "locked": { + "lastModified": 1639657838, + "narHash": "sha256-pI2dzJfkR10CHDEX6TV2E01pqcGkj7kheROw05MRTR8=", + "owner": "well-typed", + "repo": "ixset-typed", + "rev": "6cf16f77ae173311742623e5f0b308a21b337aa7", + "type": "github" + }, + "original": { + "owner": "well-typed", + "repo": "ixset-typed", + "type": "github" + } + }, + "lint-utils": { + "inputs": { + "flake-utils": "flake-utils_4", + "nixpkgs": [ + "liqwid-plutarch-extra", + "plutarch", + "emanote", + "ema", + "nixpkgs" + ] + }, + "locked": { + "lastModified": 1650427214, + "narHash": "sha256-9m66rRSSM614ocRXNPAArwnrS6zzCQYYhd3nw8g4QUg=", + "ref": "overengineered", + "rev": "5555def5a25c5437834c06cbe79b3945916ec59f", + "revCount": 28, + "type": "git", + "url": "https://gitlab.homotopic.tech/nix/lint-utils.git" + }, + "original": { + "ref": "overengineered", + "type": "git", + "url": "https://gitlab.homotopic.tech/nix/lint-utils.git" + } + }, + "lint-utils_2": { + "inputs": { + "flake-utils": "flake-utils_11", + "nixpkgs": [ + "plutarch-numeric", + "plutarch", + "emanote", + "ema", + "nixpkgs" + ] + }, + "locked": { + "lastModified": 1650427214, + "narHash": "sha256-9m66rRSSM614ocRXNPAArwnrS6zzCQYYhd3nw8g4QUg=", + "ref": "overengineered", + "rev": "5555def5a25c5437834c06cbe79b3945916ec59f", + "revCount": 28, + "type": "git", + "url": "https://gitlab.homotopic.tech/nix/lint-utils.git" + }, + "original": { + "ref": "overengineered", + "type": "git", + "url": "https://gitlab.homotopic.tech/nix/lint-utils.git" + } + }, + "lint-utils_3": { + "inputs": { + "flake-utils": "flake-utils_17", + "nixpkgs": [ + "plutarch-safe-money", + "liqwid-plutarch-extra", + "plutarch", + "emanote", + "ema", + "nixpkgs" + ] + }, + "locked": { + "lastModified": 1650427214, + "narHash": "sha256-9m66rRSSM614ocRXNPAArwnrS6zzCQYYhd3nw8g4QUg=", + "ref": "overengineered", + "rev": "5555def5a25c5437834c06cbe79b3945916ec59f", + "revCount": 28, + "type": "git", + "url": "https://gitlab.homotopic.tech/nix/lint-utils.git" + }, + "original": { + "ref": "overengineered", + "type": "git", + "url": "https://gitlab.homotopic.tech/nix/lint-utils.git" + } + }, + "lint-utils_4": { + "inputs": { + "flake-utils": "flake-utils_23", + "nixpkgs": [ + "plutarch-safe-money", + "plutarch", + "emanote", + "ema", + "nixpkgs" + ] + }, + "locked": { + "lastModified": 1650427214, + "narHash": "sha256-9m66rRSSM614ocRXNPAArwnrS6zzCQYYhd3nw8g4QUg=", + "ref": "overengineered", + "rev": "5555def5a25c5437834c06cbe79b3945916ec59f", + "revCount": 28, + "type": "git", + "url": "https://gitlab.homotopic.tech/nix/lint-utils.git" + }, + "original": { + "ref": "overengineered", + "type": "git", + "url": "https://gitlab.homotopic.tech/nix/lint-utils.git" + } + }, + "lint-utils_5": { + "inputs": { + "flake-utils": "flake-utils_29", + "nixpkgs": [ + "plutarch-safe-money", + "plutarch-numeric", + "plutarch", + "emanote", + "ema", + "nixpkgs" + ] + }, + "locked": { + "lastModified": 1650427214, + "narHash": "sha256-9m66rRSSM614ocRXNPAArwnrS6zzCQYYhd3nw8g4QUg=", + "ref": "overengineered", + "rev": "5555def5a25c5437834c06cbe79b3945916ec59f", + "revCount": 28, + "type": "git", + "url": "https://gitlab.homotopic.tech/nix/lint-utils.git" + }, + "original": { + "ref": "overengineered", + "type": "git", + "url": "https://gitlab.homotopic.tech/nix/lint-utils.git" + } + }, + "liqwid-plutarch-extra": { + "inputs": { + "haskell-nix": [ + "liqwid-plutarch-extra", + "plutarch", + "haskell-nix" + ], + "nixpkgs": [ + "liqwid-plutarch-extra", + "plutarch", + "nixpkgs" + ], + "nixpkgs-2111": "nixpkgs-2111_3", + "plutarch": "plutarch" + }, + "locked": { + "lastModified": 1653534226, + "narHash": "sha256-rgSziKfQPajq7qAIehg+o8oS5QZkFdqGEP5+1oKXwxA=", + "ref": "main", + "rev": "636bdcf5f262fd90626a55e98a68b4c26bafe663", + "revCount": 13, + "type": "git", + "url": "ssh://git@github.com/Liqwid-Labs/liqwid-plutarch-extra" + }, + "original": { + "ref": "main", + "type": "git", + "url": "ssh://git@github.com/Liqwid-Labs/liqwid-plutarch-extra" + } + }, + "liqwid-plutarch-extra_2": { + "inputs": { + "haskell-nix": [ + "plutarch-safe-money", + "liqwid-plutarch-extra", + "plutarch", + "haskell-nix" + ], + "nixpkgs": [ + "plutarch-safe-money", + "liqwid-plutarch-extra", + "plutarch", + "nixpkgs" + ], + "nixpkgs-2111": "nixpkgs-2111_9", + "plutarch": "plutarch_4" + }, + "locked": { + "lastModified": 1653534226, + "narHash": "sha256-rgSziKfQPajq7qAIehg+o8oS5QZkFdqGEP5+1oKXwxA=", + "ref": "main", + "rev": "636bdcf5f262fd90626a55e98a68b4c26bafe663", + "revCount": 13, + "type": "git", + "url": "ssh://git@github.com/Liqwid-Labs/liqwid-plutarch-extra" + }, + "original": { + "ref": "main", + "type": "git", + "url": "ssh://git@github.com/Liqwid-Labs/liqwid-plutarch-extra" + } + }, "nix-tools": { "flake": false, "locked": { @@ -1468,11 +5300,11 @@ "nix-tools_3": { "flake": false, "locked": { - "lastModified": 1636018067, - "narHash": "sha256-ng306fkuwr6V/malWtt3979iAC4yMVDDH2ViwYB6sQE=", + "lastModified": 1644395812, + "narHash": "sha256-BVFk/BEsTLq5MMZvdy3ZYHKfaS3dHrsKh4+tb5t5b58=", "owner": "input-output-hk", "repo": "nix-tools", - "rev": "ed5bd7215292deba55d6ab7a4e8c21f8b1564dda", + "rev": "d847c63b99bbec78bf83be2a61dc9f09b8a9ccc1", "type": "github" }, "original": { @@ -1484,11 +5316,11 @@ "nix-tools_4": { "flake": false, "locked": { - "lastModified": 1649424170, - "narHash": "sha256-XgKXWispvv5RCvZzPb+p7e6Hy3LMuRjafKMl7kXzxGw=", + "lastModified": 1644395812, + "narHash": "sha256-BVFk/BEsTLq5MMZvdy3ZYHKfaS3dHrsKh4+tb5t5b58=", "owner": "input-output-hk", "repo": "nix-tools", - "rev": "e109c94016e3b6e0db7ed413c793e2d4bdb24aa7", + "rev": "d847c63b99bbec78bf83be2a61dc9f09b8a9ccc1", "type": "github" }, "original": { @@ -1497,35 +5329,83 @@ "type": "github" } }, - "nixos-20_09": { + "nix-tools_5": { + "flake": false, "locked": { - "lastModified": 1623585158, - "narHash": "sha256-AjK7M1/six8IBPOI28nm7yC2k8mZIR2F9QrOwFYHAS0=", - "owner": "NixOS", - "repo": "nixpkgs", - "rev": "115dbbe82eb4ec8aabf959068286468a68e0b244", + "lastModified": 1644395812, + "narHash": "sha256-BVFk/BEsTLq5MMZvdy3ZYHKfaS3dHrsKh4+tb5t5b58=", + "owner": "input-output-hk", + "repo": "nix-tools", + "rev": "d847c63b99bbec78bf83be2a61dc9f09b8a9ccc1", "type": "github" }, "original": { - "owner": "NixOS", - "ref": "nixos-20.09", - "repo": "nixpkgs", + "owner": "input-output-hk", + "repo": "nix-tools", "type": "github" } }, - "nixos-unstable": { + "nix-tools_6": { + "flake": false, "locked": { - "lastModified": 1630248577, - "narHash": "sha256-9d/yq96TTrnF7qjA6wPYk+rYjWAXwfUmwk3qewezSeg=", - "owner": "NixOS", - "repo": "nixpkgs", - "rev": "8d8a28b47b7c41aeb4ad01a2bd8b7d26986c3512", + "lastModified": 1644395812, + "narHash": "sha256-BVFk/BEsTLq5MMZvdy3ZYHKfaS3dHrsKh4+tb5t5b58=", + "owner": "input-output-hk", + "repo": "nix-tools", + "rev": "d847c63b99bbec78bf83be2a61dc9f09b8a9ccc1", "type": "github" }, "original": { - "owner": "NixOS", - "ref": "nixos-unstable", - "repo": "nixpkgs", + "owner": "input-output-hk", + "repo": "nix-tools", + "type": "github" + } + }, + "nix-tools_7": { + "flake": false, + "locked": { + "lastModified": 1644395812, + "narHash": "sha256-BVFk/BEsTLq5MMZvdy3ZYHKfaS3dHrsKh4+tb5t5b58=", + "owner": "input-output-hk", + "repo": "nix-tools", + "rev": "d847c63b99bbec78bf83be2a61dc9f09b8a9ccc1", + "type": "github" + }, + "original": { + "owner": "input-output-hk", + "repo": "nix-tools", + "type": "github" + } + }, + "nix-tools_8": { + "flake": false, + "locked": { + "lastModified": 1644395812, + "narHash": "sha256-BVFk/BEsTLq5MMZvdy3ZYHKfaS3dHrsKh4+tb5t5b58=", + "owner": "input-output-hk", + "repo": "nix-tools", + "rev": "d847c63b99bbec78bf83be2a61dc9f09b8a9ccc1", + "type": "github" + }, + "original": { + "owner": "input-output-hk", + "repo": "nix-tools", + "type": "github" + } + }, + "nix-tools_9": { + "flake": false, + "locked": { + "lastModified": 1627889534, + "narHash": "sha256-9eEbK2nrRp6rYGQoBv6LO9IA/ANZpofwAkxMuGBD45Y=", + "owner": "input-output-hk", + "repo": "nix-tools", + "rev": "15d2e4b61cb63ff351f3c490c12c4d89eafd31a1", + "type": "github" + }, + "original": { + "owner": "input-output-hk", + "repo": "nix-tools", "type": "github" } }, @@ -1610,6 +5490,102 @@ "type": "github" } }, + "nixpkgs-2003_5": { + "locked": { + "lastModified": 1620055814, + "narHash": "sha256-8LEHoYSJiL901bTMVatq+rf8y7QtWuZhwwpKE2fyaRY=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "1db42b7fe3878f3f5f7a4f2dc210772fd080e205", + "type": "github" + }, + "original": { + "owner": "NixOS", + "ref": "nixpkgs-20.03-darwin", + "repo": "nixpkgs", + "type": "github" + } + }, + "nixpkgs-2003_6": { + "locked": { + "lastModified": 1620055814, + "narHash": "sha256-8LEHoYSJiL901bTMVatq+rf8y7QtWuZhwwpKE2fyaRY=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "1db42b7fe3878f3f5f7a4f2dc210772fd080e205", + "type": "github" + }, + "original": { + "owner": "NixOS", + "ref": "nixpkgs-20.03-darwin", + "repo": "nixpkgs", + "type": "github" + } + }, + "nixpkgs-2003_7": { + "locked": { + "lastModified": 1620055814, + "narHash": "sha256-8LEHoYSJiL901bTMVatq+rf8y7QtWuZhwwpKE2fyaRY=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "1db42b7fe3878f3f5f7a4f2dc210772fd080e205", + "type": "github" + }, + "original": { + "owner": "NixOS", + "ref": "nixpkgs-20.03-darwin", + "repo": "nixpkgs", + "type": "github" + } + }, + "nixpkgs-2003_8": { + "locked": { + "lastModified": 1620055814, + "narHash": "sha256-8LEHoYSJiL901bTMVatq+rf8y7QtWuZhwwpKE2fyaRY=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "1db42b7fe3878f3f5f7a4f2dc210772fd080e205", + "type": "github" + }, + "original": { + "owner": "NixOS", + "ref": "nixpkgs-20.03-darwin", + "repo": "nixpkgs", + "type": "github" + } + }, + "nixpkgs-2003_9": { + "locked": { + "lastModified": 1620055814, + "narHash": "sha256-8LEHoYSJiL901bTMVatq+rf8y7QtWuZhwwpKE2fyaRY=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "1db42b7fe3878f3f5f7a4f2dc210772fd080e205", + "type": "github" + }, + "original": { + "owner": "NixOS", + "ref": "nixpkgs-20.03-darwin", + "repo": "nixpkgs", + "type": "github" + } + }, + "nixpkgs-2009": { + "locked": { + "lastModified": 1624271064, + "narHash": "sha256-qns/uRW7MR2EfVf6VEeLgCsCp7pIOjDeR44JzTF09MA=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "46d1c3f28ca991601a53e9a14fdd53fcd3dd8416", + "type": "github" + }, + "original": { + "owner": "NixOS", + "ref": "nixpkgs-20.09-darwin", + "repo": "nixpkgs", + "type": "github" + } + }, "nixpkgs-2105": { "locked": { "lastModified": 1642244250, @@ -1644,11 +5620,11 @@ }, "nixpkgs-2105_3": { "locked": { - "lastModified": 1640283157, - "narHash": "sha256-6Ddfop+rKE+Gl9Tjp9YIrkfoYPzb8F80ergdjcq3/MY=", + "lastModified": 1642244250, + "narHash": "sha256-vWpUEqQdVP4srj+/YLJRTN9vjpTs4je0cdWKXPbDItc=", "owner": "NixOS", "repo": "nixpkgs", - "rev": "dde1557825c5644c869c5efc7448dc03722a8f09", + "rev": "0fd9ee1aa36ce865ad273f4f07fdc093adeb5c00", "type": "github" }, "original": { @@ -1660,11 +5636,91 @@ }, "nixpkgs-2105_4": { "locked": { - "lastModified": 1645296114, - "narHash": "sha256-y53N7TyIkXsjMpOG7RhvqJFGDacLs9HlyHeSTBioqYU=", + "lastModified": 1642244250, + "narHash": "sha256-vWpUEqQdVP4srj+/YLJRTN9vjpTs4je0cdWKXPbDItc=", "owner": "NixOS", "repo": "nixpkgs", - "rev": "530a53dcbc9437363471167a5e4762c5fcfa34a1", + "rev": "0fd9ee1aa36ce865ad273f4f07fdc093adeb5c00", + "type": "github" + }, + "original": { + "owner": "NixOS", + "ref": "nixpkgs-21.05-darwin", + "repo": "nixpkgs", + "type": "github" + } + }, + "nixpkgs-2105_5": { + "locked": { + "lastModified": 1642244250, + "narHash": "sha256-vWpUEqQdVP4srj+/YLJRTN9vjpTs4je0cdWKXPbDItc=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "0fd9ee1aa36ce865ad273f4f07fdc093adeb5c00", + "type": "github" + }, + "original": { + "owner": "NixOS", + "ref": "nixpkgs-21.05-darwin", + "repo": "nixpkgs", + "type": "github" + } + }, + "nixpkgs-2105_6": { + "locked": { + "lastModified": 1642244250, + "narHash": "sha256-vWpUEqQdVP4srj+/YLJRTN9vjpTs4je0cdWKXPbDItc=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "0fd9ee1aa36ce865ad273f4f07fdc093adeb5c00", + "type": "github" + }, + "original": { + "owner": "NixOS", + "ref": "nixpkgs-21.05-darwin", + "repo": "nixpkgs", + "type": "github" + } + }, + "nixpkgs-2105_7": { + "locked": { + "lastModified": 1642244250, + "narHash": "sha256-vWpUEqQdVP4srj+/YLJRTN9vjpTs4je0cdWKXPbDItc=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "0fd9ee1aa36ce865ad273f4f07fdc093adeb5c00", + "type": "github" + }, + "original": { + "owner": "NixOS", + "ref": "nixpkgs-21.05-darwin", + "repo": "nixpkgs", + "type": "github" + } + }, + "nixpkgs-2105_8": { + "locked": { + "lastModified": 1642244250, + "narHash": "sha256-vWpUEqQdVP4srj+/YLJRTN9vjpTs4je0cdWKXPbDItc=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "0fd9ee1aa36ce865ad273f4f07fdc093adeb5c00", + "type": "github" + }, + "original": { + "owner": "NixOS", + "ref": "nixpkgs-21.05-darwin", + "repo": "nixpkgs", + "type": "github" + } + }, + "nixpkgs-2105_9": { + "locked": { + "lastModified": 1630481079, + "narHash": "sha256-leWXLchbAbqOlLT6tju631G40SzQWPqaAXQG3zH1Imw=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "110a2c9ebbf5d4a94486854f18a37a938cfacbbb", "type": "github" }, "original": { @@ -1690,6 +5746,86 @@ "type": "github" } }, + "nixpkgs-2111_10": { + "locked": { + "lastModified": 1644510859, + "narHash": "sha256-xjpVvL5ecbyi0vxtVl/Fh9bwGlMbw3S06zE5nUzFB8A=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "0d1d5d7e3679fec9d07f2eb804d9f9fdb98378d3", + "type": "github" + }, + "original": { + "owner": "NixOS", + "ref": "nixpkgs-21.11-darwin", + "repo": "nixpkgs", + "type": "github" + } + }, + "nixpkgs-2111_11": { + "locked": { + "lastModified": 1653319070, + "narHash": "sha256-Z3cv967iN6mXgxhq1cjOoPod23XgNttCWHXMnMZUq9E=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "1c813bbdc330b45fe922c642eb610902aecd5673", + "type": "github" + }, + "original": { + "owner": "NixOS", + "ref": "nixpkgs-21.11-darwin", + "repo": "nixpkgs", + "type": "github" + } + }, + "nixpkgs-2111_12": { + "locked": { + "lastModified": 1644510859, + "narHash": "sha256-xjpVvL5ecbyi0vxtVl/Fh9bwGlMbw3S06zE5nUzFB8A=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "0d1d5d7e3679fec9d07f2eb804d9f9fdb98378d3", + "type": "github" + }, + "original": { + "owner": "NixOS", + "ref": "nixpkgs-21.11-darwin", + "repo": "nixpkgs", + "type": "github" + } + }, + "nixpkgs-2111_13": { + "locked": { + "lastModified": 1653319070, + "narHash": "sha256-Z3cv967iN6mXgxhq1cjOoPod23XgNttCWHXMnMZUq9E=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "1c813bbdc330b45fe922c642eb610902aecd5673", + "type": "github" + }, + "original": { + "owner": "NixOS", + "ref": "nixpkgs-21.11-darwin", + "repo": "nixpkgs", + "type": "github" + } + }, + "nixpkgs-2111_14": { + "locked": { + "lastModified": 1644510859, + "narHash": "sha256-xjpVvL5ecbyi0vxtVl/Fh9bwGlMbw3S06zE5nUzFB8A=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "0d1d5d7e3679fec9d07f2eb804d9f9fdb98378d3", + "type": "github" + }, + "original": { + "owner": "NixOS", + "ref": "nixpkgs-21.11-darwin", + "repo": "nixpkgs", + "type": "github" + } + }, "nixpkgs-2111_2": { "locked": { "lastModified": 1639213685, @@ -1708,11 +5844,11 @@ }, "nixpkgs-2111_3": { "locked": { - "lastModified": 1648744337, - "narHash": "sha256-bYe1dFJAXovjqiaPKrmAbSBEK5KUkgwVaZcTbSoJ7hg=", + "lastModified": 1653305485, + "narHash": "sha256-JIA2JHfjUVq9rLmVshnQOrUP+3tR4TFFEY2DDuclJnM=", "owner": "NixOS", "repo": "nixpkgs", - "rev": "0a58eebd8ec65ffdef2ce9562784123a73922052", + "rev": "4cfde57fa833868781e0ba743a628d683adf96a8", "type": "github" }, "original": { @@ -1723,22 +5859,6 @@ } }, "nixpkgs-2111_4": { - "locked": { - "lastModified": 1640283207, - "narHash": "sha256-SCwl7ZnCfMDsuSYvwIroiAlk7n33bW8HFfY8NvKhcPA=", - "owner": "NixOS", - "repo": "nixpkgs", - "rev": "64c7e3388bbd9206e437713351e814366e0c3284", - "type": "github" - }, - "original": { - "owner": "NixOS", - "ref": "nixpkgs-21.11-darwin", - "repo": "nixpkgs", - "type": "github" - } - }, - "nixpkgs-2111_5": { "locked": { "lastModified": 1644510859, "narHash": "sha256-xjpVvL5ecbyi0vxtVl/Fh9bwGlMbw3S06zE5nUzFB8A=", @@ -1754,13 +5874,13 @@ "type": "github" } }, - "nixpkgs-2111_6": { + "nixpkgs-2111_5": { "locked": { - "lastModified": 1648744337, - "narHash": "sha256-bYe1dFJAXovjqiaPKrmAbSBEK5KUkgwVaZcTbSoJ7hg=", + "lastModified": 1653399365, + "narHash": "sha256-uU80SquzngmRHSWDFvHazBD3JvckRYLbEYWPhZ18smA=", "owner": "NixOS", "repo": "nixpkgs", - "rev": "0a58eebd8ec65ffdef2ce9562784123a73922052", + "rev": "2eb86322c17232ca01a50435e8bb2751e048ff3c", "type": "github" }, "original": { @@ -1770,35 +5890,68 @@ "type": "github" } }, - "nixpkgs-nixops": { + "nixpkgs-2111_6": { "locked": { - "lastModified": 1630248577, - "narHash": "sha256-9d/yq96TTrnF7qjA6wPYk+rYjWAXwfUmwk3qewezSeg=", + "lastModified": 1644510859, + "narHash": "sha256-xjpVvL5ecbyi0vxtVl/Fh9bwGlMbw3S06zE5nUzFB8A=", "owner": "NixOS", "repo": "nixpkgs", - "rev": "8d8a28b47b7c41aeb4ad01a2bd8b7d26986c3512", + "rev": "0d1d5d7e3679fec9d07f2eb804d9f9fdb98378d3", "type": "github" }, "original": { "owner": "NixOS", + "ref": "nixpkgs-21.11-darwin", "repo": "nixpkgs", - "rev": "8d8a28b47b7c41aeb4ad01a2bd8b7d26986c3512", "type": "github" } }, - "nixpkgs-regression": { + "nixpkgs-2111_7": { "locked": { - "lastModified": 1643052045, - "narHash": "sha256-uGJ0VXIhWKGXxkeNnq4TvV3CIOkUJ3PAoLZ3HMzNVMw=", + "lastModified": 1653319070, + "narHash": "sha256-Z3cv967iN6mXgxhq1cjOoPod23XgNttCWHXMnMZUq9E=", "owner": "NixOS", "repo": "nixpkgs", - "rev": "215d4d0fd80ca5163643b03a33fde804a29cc1e2", + "rev": "1c813bbdc330b45fe922c642eb610902aecd5673", "type": "github" }, "original": { - "id": "nixpkgs", - "rev": "215d4d0fd80ca5163643b03a33fde804a29cc1e2", - "type": "indirect" + "owner": "NixOS", + "ref": "nixpkgs-21.11-darwin", + "repo": "nixpkgs", + "type": "github" + } + }, + "nixpkgs-2111_8": { + "locked": { + "lastModified": 1644510859, + "narHash": "sha256-xjpVvL5ecbyi0vxtVl/Fh9bwGlMbw3S06zE5nUzFB8A=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "0d1d5d7e3679fec9d07f2eb804d9f9fdb98378d3", + "type": "github" + }, + "original": { + "owner": "NixOS", + "ref": "nixpkgs-21.11-darwin", + "repo": "nixpkgs", + "type": "github" + } + }, + "nixpkgs-2111_9": { + "locked": { + "lastModified": 1653305485, + "narHash": "sha256-JIA2JHfjUVq9rLmVshnQOrUP+3tR4TFFEY2DDuclJnM=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "4cfde57fa833868781e0ba743a628d683adf96a8", + "type": "github" + }, + "original": { + "owner": "NixOS", + "ref": "nixpkgs-21.11-darwin", + "repo": "nixpkgs", + "type": "github" } }, "nixpkgs-unstable": { @@ -1835,11 +5988,11 @@ }, "nixpkgs-unstable_3": { "locked": { - "lastModified": 1641285291, - "narHash": "sha256-KYaOBNGar3XWTxTsYPr9P6u74KAqNq0wobEC236U+0c=", + "lastModified": 1644486793, + "narHash": "sha256-EeijR4guVHgVv+JpOX3cQO+1XdrkJfGmiJ9XVsVU530=", "owner": "NixOS", "repo": "nixpkgs", - "rev": "0432195a4b8d68faaa7d3d4b355260a3120aeeae", + "rev": "1882c6b7368fd284ad01b0a5b5601ef136321292", "type": "github" }, "original": { @@ -1851,11 +6004,11 @@ }, "nixpkgs-unstable_4": { "locked": { - "lastModified": 1648219316, - "narHash": "sha256-Ctij+dOi0ZZIfX5eMhgwugfvB+WZSrvVNAyAuANOsnQ=", + "lastModified": 1644486793, + "narHash": "sha256-EeijR4guVHgVv+JpOX3cQO+1XdrkJfGmiJ9XVsVU530=", "owner": "NixOS", "repo": "nixpkgs", - "rev": "30d3d79b7d3607d56546dd2a6b49e156ba0ec634", + "rev": "1882c6b7368fd284ad01b0a5b5601ef136321292", "type": "github" }, "original": { @@ -1865,13 +6018,141 @@ "type": "github" } }, - "nixpkgs_2": { + "nixpkgs-unstable_5": { "locked": { - "lastModified": 1602411953, - "narHash": "sha256-gbupmxRpoQZqL5NBQCJN2GI5G7XDEHHHYKhVwEj5+Ps=", - "owner": "LnL7", + "lastModified": 1644486793, + "narHash": "sha256-EeijR4guVHgVv+JpOX3cQO+1XdrkJfGmiJ9XVsVU530=", + "owner": "NixOS", "repo": "nixpkgs", - "rev": "f780534ea2d0c12e62607ff254b6b45f46653f7a", + "rev": "1882c6b7368fd284ad01b0a5b5601ef136321292", + "type": "github" + }, + "original": { + "owner": "NixOS", + "ref": "nixpkgs-unstable", + "repo": "nixpkgs", + "type": "github" + } + }, + "nixpkgs-unstable_6": { + "locked": { + "lastModified": 1644486793, + "narHash": "sha256-EeijR4guVHgVv+JpOX3cQO+1XdrkJfGmiJ9XVsVU530=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "1882c6b7368fd284ad01b0a5b5601ef136321292", + "type": "github" + }, + "original": { + "owner": "NixOS", + "ref": "nixpkgs-unstable", + "repo": "nixpkgs", + "type": "github" + } + }, + "nixpkgs-unstable_7": { + "locked": { + "lastModified": 1644486793, + "narHash": "sha256-EeijR4guVHgVv+JpOX3cQO+1XdrkJfGmiJ9XVsVU530=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "1882c6b7368fd284ad01b0a5b5601ef136321292", + "type": "github" + }, + "original": { + "owner": "NixOS", + "ref": "nixpkgs-unstable", + "repo": "nixpkgs", + "type": "github" + } + }, + "nixpkgs-unstable_8": { + "locked": { + "lastModified": 1644486793, + "narHash": "sha256-EeijR4guVHgVv+JpOX3cQO+1XdrkJfGmiJ9XVsVU530=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "1882c6b7368fd284ad01b0a5b5601ef136321292", + "type": "github" + }, + "original": { + "owner": "NixOS", + "ref": "nixpkgs-unstable", + "repo": "nixpkgs", + "type": "github" + } + }, + "nixpkgs-unstable_9": { + "locked": { + "lastModified": 1628785280, + "narHash": "sha256-2B5eMrEr6O8ff2aQNeVxTB+9WrGE80OB4+oM6T7fOcc=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "6525bbc06a39f26750ad8ee0d40000ddfdc24acb", + "type": "github" + }, + "original": { + "owner": "NixOS", + "ref": "nixpkgs-unstable", + "repo": "nixpkgs", + "type": "github" + } + }, + "nixpkgs_10": { + "locked": { + "lastModified": 1650882267, + "narHash": "sha256-BFKiz8srATQIBuFEN2HgS2EHisK29EjZ/HV34wSr2lU=", + "owner": "nixos", + "repo": "nixpkgs", + "rev": "2ea2f7b6d0cb7ce0712f2aa80303cda08deb0de2", + "type": "github" + }, + "original": { + "owner": "nixos", + "repo": "nixpkgs", + "rev": "2ea2f7b6d0cb7ce0712f2aa80303cda08deb0de2", + "type": "github" + } + }, + "nixpkgs_11": { + "locked": { + "lastModified": 1647350163, + "narHash": "sha256-OcMI+PFEHTONthXuEQNddt16Ml7qGvanL3x8QOl2Aao=", + "owner": "nixos", + "repo": "nixpkgs", + "rev": "3eb07eeafb52bcbf02ce800f032f18d666a9498d", + "type": "github" + }, + "original": { + "owner": "nixos", + "repo": "nixpkgs", + "rev": "3eb07eeafb52bcbf02ce800f032f18d666a9498d", + "type": "github" + } + }, + "nixpkgs_12": { + "locked": { + "lastModified": 1649456639, + "narHash": "sha256-rZCjaEAZgOtT9kYTBigksof64SqKAXOuoHhlzHvfl0E=", + "owner": "nixos", + "repo": "nixpkgs", + "rev": "c48167590e3258daac6ab12a41bc2b7341e9b2ec", + "type": "github" + }, + "original": { + "owner": "nixos", + "repo": "nixpkgs", + "rev": "c48167590e3258daac6ab12a41bc2b7341e9b2ec", + "type": "github" + } + }, + "nixpkgs_13": { + "locked": { + "lastModified": 1648219316, + "narHash": "sha256-Ctij+dOi0ZZIfX5eMhgwugfvB+WZSrvVNAyAuANOsnQ=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "30d3d79b7d3607d56546dd2a6b49e156ba0ec634", "type": "github" }, "original": { @@ -1879,23 +6160,23 @@ "type": "indirect" } }, - "nixpkgs_3": { + "nixpkgs_14": { "locked": { - "lastModified": 1633463774, - "narHash": "sha256-y3GjapcRzd42NgebQ4sx5GFJ53dYqNdF3UQu7/t6mUg=", - "owner": "hercules-ci", + "lastModified": 1647297614, + "narHash": "sha256-ulGq3W5XsrBMU/u5k9d4oPy65pQTkunR4HKKtTq0RwY=", + "owner": "NixOS", "repo": "nixpkgs", - "rev": "c70f908fd1f129aede2744d4385fae57d2e252b1", + "rev": "73ad5f9e147c0d2a2061f1d4bd91e05078dc0b58", "type": "github" }, "original": { - "owner": "hercules-ci", - "ref": "init-nixops-hercules-ci", + "owner": "NixOS", + "ref": "nixos-unstable", "repo": "nixpkgs", "type": "github" } }, - "nixpkgs_4": { + "nixpkgs_15": { "flake": false, "locked": { "lastModified": 1628785280, @@ -1912,21 +6193,419 @@ "type": "github" } }, - "nixpkgs_5": { + "nixpkgs_16": { "locked": { - "lastModified": 1632864508, - "narHash": "sha256-d127FIvGR41XbVRDPVvozUPQ/uRHbHwvfyKHwEt5xFM=", + "lastModified": 1650882267, + "narHash": "sha256-BFKiz8srATQIBuFEN2HgS2EHisK29EjZ/HV34wSr2lU=", + "owner": "nixos", + "repo": "nixpkgs", + "rev": "2ea2f7b6d0cb7ce0712f2aa80303cda08deb0de2", + "type": "github" + }, + "original": { + "owner": "nixos", + "repo": "nixpkgs", + "rev": "2ea2f7b6d0cb7ce0712f2aa80303cda08deb0de2", + "type": "github" + } + }, + "nixpkgs_17": { + "locked": { + "lastModified": 1647350163, + "narHash": "sha256-OcMI+PFEHTONthXuEQNddt16Ml7qGvanL3x8QOl2Aao=", + "owner": "nixos", + "repo": "nixpkgs", + "rev": "3eb07eeafb52bcbf02ce800f032f18d666a9498d", + "type": "github" + }, + "original": { + "owner": "nixos", + "repo": "nixpkgs", + "rev": "3eb07eeafb52bcbf02ce800f032f18d666a9498d", + "type": "github" + } + }, + "nixpkgs_18": { + "locked": { + "lastModified": 1649456639, + "narHash": "sha256-rZCjaEAZgOtT9kYTBigksof64SqKAXOuoHhlzHvfl0E=", + "owner": "nixos", + "repo": "nixpkgs", + "rev": "c48167590e3258daac6ab12a41bc2b7341e9b2ec", + "type": "github" + }, + "original": { + "owner": "nixos", + "repo": "nixpkgs", + "rev": "c48167590e3258daac6ab12a41bc2b7341e9b2ec", + "type": "github" + } + }, + "nixpkgs_19": { + "locked": { + "lastModified": 1648219316, + "narHash": "sha256-Ctij+dOi0ZZIfX5eMhgwugfvB+WZSrvVNAyAuANOsnQ=", "owner": "NixOS", "repo": "nixpkgs", - "rev": "82891b5e2c2359d7e58d08849e4c89511ab94234", + "rev": "30d3d79b7d3607d56546dd2a6b49e156ba0ec634", "type": "github" }, "original": { "id": "nixpkgs", - "ref": "nixos-21.05-small", "type": "indirect" } }, + "nixpkgs_2": { + "locked": { + "lastModified": 1650882267, + "narHash": "sha256-BFKiz8srATQIBuFEN2HgS2EHisK29EjZ/HV34wSr2lU=", + "owner": "nixos", + "repo": "nixpkgs", + "rev": "2ea2f7b6d0cb7ce0712f2aa80303cda08deb0de2", + "type": "github" + }, + "original": { + "owner": "nixos", + "repo": "nixpkgs", + "rev": "2ea2f7b6d0cb7ce0712f2aa80303cda08deb0de2", + "type": "github" + } + }, + "nixpkgs_20": { + "locked": { + "lastModified": 1647297614, + "narHash": "sha256-ulGq3W5XsrBMU/u5k9d4oPy65pQTkunR4HKKtTq0RwY=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "73ad5f9e147c0d2a2061f1d4bd91e05078dc0b58", + "type": "github" + }, + "original": { + "owner": "NixOS", + "ref": "nixos-unstable", + "repo": "nixpkgs", + "type": "github" + } + }, + "nixpkgs_21": { + "flake": false, + "locked": { + "lastModified": 1628785280, + "narHash": "sha256-2B5eMrEr6O8ff2aQNeVxTB+9WrGE80OB4+oM6T7fOcc=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "6525bbc06a39f26750ad8ee0d40000ddfdc24acb", + "type": "github" + }, + "original": { + "owner": "NixOS", + "ref": "nixpkgs-unstable", + "repo": "nixpkgs", + "type": "github" + } + }, + "nixpkgs_22": { + "locked": { + "lastModified": 1650882267, + "narHash": "sha256-BFKiz8srATQIBuFEN2HgS2EHisK29EjZ/HV34wSr2lU=", + "owner": "nixos", + "repo": "nixpkgs", + "rev": "2ea2f7b6d0cb7ce0712f2aa80303cda08deb0de2", + "type": "github" + }, + "original": { + "owner": "nixos", + "repo": "nixpkgs", + "rev": "2ea2f7b6d0cb7ce0712f2aa80303cda08deb0de2", + "type": "github" + } + }, + "nixpkgs_23": { + "locked": { + "lastModified": 1647350163, + "narHash": "sha256-OcMI+PFEHTONthXuEQNddt16Ml7qGvanL3x8QOl2Aao=", + "owner": "nixos", + "repo": "nixpkgs", + "rev": "3eb07eeafb52bcbf02ce800f032f18d666a9498d", + "type": "github" + }, + "original": { + "owner": "nixos", + "repo": "nixpkgs", + "rev": "3eb07eeafb52bcbf02ce800f032f18d666a9498d", + "type": "github" + } + }, + "nixpkgs_24": { + "locked": { + "lastModified": 1649456639, + "narHash": "sha256-rZCjaEAZgOtT9kYTBigksof64SqKAXOuoHhlzHvfl0E=", + "owner": "nixos", + "repo": "nixpkgs", + "rev": "c48167590e3258daac6ab12a41bc2b7341e9b2ec", + "type": "github" + }, + "original": { + "owner": "nixos", + "repo": "nixpkgs", + "rev": "c48167590e3258daac6ab12a41bc2b7341e9b2ec", + "type": "github" + } + }, + "nixpkgs_25": { + "locked": { + "lastModified": 1648219316, + "narHash": "sha256-Ctij+dOi0ZZIfX5eMhgwugfvB+WZSrvVNAyAuANOsnQ=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "30d3d79b7d3607d56546dd2a6b49e156ba0ec634", + "type": "github" + }, + "original": { + "id": "nixpkgs", + "type": "indirect" + } + }, + "nixpkgs_26": { + "locked": { + "lastModified": 1647297614, + "narHash": "sha256-ulGq3W5XsrBMU/u5k9d4oPy65pQTkunR4HKKtTq0RwY=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "73ad5f9e147c0d2a2061f1d4bd91e05078dc0b58", + "type": "github" + }, + "original": { + "owner": "NixOS", + "ref": "nixos-unstable", + "repo": "nixpkgs", + "type": "github" + } + }, + "nixpkgs_27": { + "flake": false, + "locked": { + "lastModified": 1628785280, + "narHash": "sha256-2B5eMrEr6O8ff2aQNeVxTB+9WrGE80OB4+oM6T7fOcc=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "6525bbc06a39f26750ad8ee0d40000ddfdc24acb", + "type": "github" + }, + "original": { + "owner": "NixOS", + "ref": "nixpkgs-unstable", + "repo": "nixpkgs", + "type": "github" + } + }, + "nixpkgs_28": { + "locked": { + "lastModified": 1650882267, + "narHash": "sha256-BFKiz8srATQIBuFEN2HgS2EHisK29EjZ/HV34wSr2lU=", + "owner": "nixos", + "repo": "nixpkgs", + "rev": "2ea2f7b6d0cb7ce0712f2aa80303cda08deb0de2", + "type": "github" + }, + "original": { + "owner": "nixos", + "repo": "nixpkgs", + "rev": "2ea2f7b6d0cb7ce0712f2aa80303cda08deb0de2", + "type": "github" + } + }, + "nixpkgs_29": { + "locked": { + "lastModified": 1647350163, + "narHash": "sha256-OcMI+PFEHTONthXuEQNddt16Ml7qGvanL3x8QOl2Aao=", + "owner": "nixos", + "repo": "nixpkgs", + "rev": "3eb07eeafb52bcbf02ce800f032f18d666a9498d", + "type": "github" + }, + "original": { + "owner": "nixos", + "repo": "nixpkgs", + "rev": "3eb07eeafb52bcbf02ce800f032f18d666a9498d", + "type": "github" + } + }, + "nixpkgs_3": { + "locked": { + "lastModified": 1647350163, + "narHash": "sha256-OcMI+PFEHTONthXuEQNddt16Ml7qGvanL3x8QOl2Aao=", + "owner": "nixos", + "repo": "nixpkgs", + "rev": "3eb07eeafb52bcbf02ce800f032f18d666a9498d", + "type": "github" + }, + "original": { + "owner": "nixos", + "repo": "nixpkgs", + "rev": "3eb07eeafb52bcbf02ce800f032f18d666a9498d", + "type": "github" + } + }, + "nixpkgs_30": { + "locked": { + "lastModified": 1649456639, + "narHash": "sha256-rZCjaEAZgOtT9kYTBigksof64SqKAXOuoHhlzHvfl0E=", + "owner": "nixos", + "repo": "nixpkgs", + "rev": "c48167590e3258daac6ab12a41bc2b7341e9b2ec", + "type": "github" + }, + "original": { + "owner": "nixos", + "repo": "nixpkgs", + "rev": "c48167590e3258daac6ab12a41bc2b7341e9b2ec", + "type": "github" + } + }, + "nixpkgs_31": { + "locked": { + "lastModified": 1648219316, + "narHash": "sha256-Ctij+dOi0ZZIfX5eMhgwugfvB+WZSrvVNAyAuANOsnQ=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "30d3d79b7d3607d56546dd2a6b49e156ba0ec634", + "type": "github" + }, + "original": { + "id": "nixpkgs", + "type": "indirect" + } + }, + "nixpkgs_32": { + "locked": { + "lastModified": 1647297614, + "narHash": "sha256-ulGq3W5XsrBMU/u5k9d4oPy65pQTkunR4HKKtTq0RwY=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "73ad5f9e147c0d2a2061f1d4bd91e05078dc0b58", + "type": "github" + }, + "original": { + "owner": "NixOS", + "ref": "nixos-unstable", + "repo": "nixpkgs", + "type": "github" + } + }, + "nixpkgs_33": { + "flake": false, + "locked": { + "lastModified": 1628785280, + "narHash": "sha256-2B5eMrEr6O8ff2aQNeVxTB+9WrGE80OB4+oM6T7fOcc=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "6525bbc06a39f26750ad8ee0d40000ddfdc24acb", + "type": "github" + }, + "original": { + "owner": "NixOS", + "ref": "nixpkgs-unstable", + "repo": "nixpkgs", + "type": "github" + } + }, + "nixpkgs_4": { + "locked": { + "lastModified": 1649456639, + "narHash": "sha256-rZCjaEAZgOtT9kYTBigksof64SqKAXOuoHhlzHvfl0E=", + "owner": "nixos", + "repo": "nixpkgs", + "rev": "c48167590e3258daac6ab12a41bc2b7341e9b2ec", + "type": "github" + }, + "original": { + "owner": "nixos", + "repo": "nixpkgs", + "rev": "c48167590e3258daac6ab12a41bc2b7341e9b2ec", + "type": "github" + } + }, + "nixpkgs_5": { + "locked": { + "lastModified": 1648219316, + "narHash": "sha256-Ctij+dOi0ZZIfX5eMhgwugfvB+WZSrvVNAyAuANOsnQ=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "30d3d79b7d3607d56546dd2a6b49e156ba0ec634", + "type": "github" + }, + "original": { + "id": "nixpkgs", + "type": "indirect" + } + }, + "nixpkgs_6": { + "locked": { + "lastModified": 1647297614, + "narHash": "sha256-ulGq3W5XsrBMU/u5k9d4oPy65pQTkunR4HKKtTq0RwY=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "73ad5f9e147c0d2a2061f1d4bd91e05078dc0b58", + "type": "github" + }, + "original": { + "owner": "NixOS", + "ref": "nixos-unstable", + "repo": "nixpkgs", + "type": "github" + } + }, + "nixpkgs_7": { + "flake": false, + "locked": { + "lastModified": 1628785280, + "narHash": "sha256-2B5eMrEr6O8ff2aQNeVxTB+9WrGE80OB4+oM6T7fOcc=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "6525bbc06a39f26750ad8ee0d40000ddfdc24acb", + "type": "github" + }, + "original": { + "owner": "NixOS", + "ref": "nixpkgs-unstable", + "repo": "nixpkgs", + "type": "github" + } + }, + "nixpkgs_8": { + "locked": { + "lastModified": 1647297614, + "narHash": "sha256-ulGq3W5XsrBMU/u5k9d4oPy65pQTkunR4HKKtTq0RwY=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "73ad5f9e147c0d2a2061f1d4bd91e05078dc0b58", + "type": "github" + }, + "original": { + "owner": "NixOS", + "ref": "nixos-unstable", + "repo": "nixpkgs", + "type": "github" + } + }, + "nixpkgs_9": { + "flake": false, + "locked": { + "lastModified": 1628785280, + "narHash": "sha256-2B5eMrEr6O8ff2aQNeVxTB+9WrGE80OB4+oM6T7fOcc=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "6525bbc06a39f26750ad8ee0d40000ddfdc24acb", + "type": "github" + }, + "original": { + "owner": "NixOS", + "ref": "nixpkgs-unstable", + "repo": "nixpkgs", + "type": "github" + } + }, "old-ghc-nix": { "flake": false, "locked": { @@ -1995,6 +6674,276 @@ "type": "github" } }, + "old-ghc-nix_5": { + "flake": false, + "locked": { + "lastModified": 1631092763, + "narHash": "sha256-sIKgO+z7tj4lw3u6oBZxqIhDrzSkvpHtv0Kki+lh9Fg=", + "owner": "angerman", + "repo": "old-ghc-nix", + "rev": "af48a7a7353e418119b6dfe3cd1463a657f342b8", + "type": "github" + }, + "original": { + "owner": "angerman", + "ref": "master", + "repo": "old-ghc-nix", + "type": "github" + } + }, + "old-ghc-nix_6": { + "flake": false, + "locked": { + "lastModified": 1631092763, + "narHash": "sha256-sIKgO+z7tj4lw3u6oBZxqIhDrzSkvpHtv0Kki+lh9Fg=", + "owner": "angerman", + "repo": "old-ghc-nix", + "rev": "af48a7a7353e418119b6dfe3cd1463a657f342b8", + "type": "github" + }, + "original": { + "owner": "angerman", + "ref": "master", + "repo": "old-ghc-nix", + "type": "github" + } + }, + "old-ghc-nix_7": { + "flake": false, + "locked": { + "lastModified": 1631092763, + "narHash": "sha256-sIKgO+z7tj4lw3u6oBZxqIhDrzSkvpHtv0Kki+lh9Fg=", + "owner": "angerman", + "repo": "old-ghc-nix", + "rev": "af48a7a7353e418119b6dfe3cd1463a657f342b8", + "type": "github" + }, + "original": { + "owner": "angerman", + "ref": "master", + "repo": "old-ghc-nix", + "type": "github" + } + }, + "old-ghc-nix_8": { + "flake": false, + "locked": { + "lastModified": 1631092763, + "narHash": "sha256-sIKgO+z7tj4lw3u6oBZxqIhDrzSkvpHtv0Kki+lh9Fg=", + "owner": "angerman", + "repo": "old-ghc-nix", + "rev": "af48a7a7353e418119b6dfe3cd1463a657f342b8", + "type": "github" + }, + "original": { + "owner": "angerman", + "ref": "master", + "repo": "old-ghc-nix", + "type": "github" + } + }, + "old-ghc-nix_9": { + "flake": false, + "locked": { + "lastModified": 1631092763, + "narHash": "sha256-sIKgO+z7tj4lw3u6oBZxqIhDrzSkvpHtv0Kki+lh9Fg=", + "owner": "angerman", + "repo": "old-ghc-nix", + "rev": "af48a7a7353e418119b6dfe3cd1463a657f342b8", + "type": "github" + }, + "original": { + "owner": "angerman", + "ref": "master", + "repo": "old-ghc-nix", + "type": "github" + } + }, + "pandoc-link-context": { + "flake": false, + "locked": { + "lastModified": 1650932770, + "narHash": "sha256-/WzE4O23B1OcL3WF8Saz5TRQj0tGH7FtbgRLRson2Mc=", + "owner": "srid", + "repo": "pandoc-link-context", + "rev": "85bd204339aafd309b8a3dd99ebffa6a50776cb6", + "type": "github" + }, + "original": { + "owner": "srid", + "ref": "master", + "repo": "pandoc-link-context", + "type": "github" + } + }, + "pandoc-link-context_2": { + "flake": false, + "locked": { + "lastModified": 1650932770, + "narHash": "sha256-/WzE4O23B1OcL3WF8Saz5TRQj0tGH7FtbgRLRson2Mc=", + "owner": "srid", + "repo": "pandoc-link-context", + "rev": "85bd204339aafd309b8a3dd99ebffa6a50776cb6", + "type": "github" + }, + "original": { + "owner": "srid", + "ref": "master", + "repo": "pandoc-link-context", + "type": "github" + } + }, + "pandoc-link-context_3": { + "flake": false, + "locked": { + "lastModified": 1650932770, + "narHash": "sha256-/WzE4O23B1OcL3WF8Saz5TRQj0tGH7FtbgRLRson2Mc=", + "owner": "srid", + "repo": "pandoc-link-context", + "rev": "85bd204339aafd309b8a3dd99ebffa6a50776cb6", + "type": "github" + }, + "original": { + "owner": "srid", + "ref": "master", + "repo": "pandoc-link-context", + "type": "github" + } + }, + "pandoc-link-context_4": { + "flake": false, + "locked": { + "lastModified": 1650932770, + "narHash": "sha256-/WzE4O23B1OcL3WF8Saz5TRQj0tGH7FtbgRLRson2Mc=", + "owner": "srid", + "repo": "pandoc-link-context", + "rev": "85bd204339aafd309b8a3dd99ebffa6a50776cb6", + "type": "github" + }, + "original": { + "owner": "srid", + "ref": "master", + "repo": "pandoc-link-context", + "type": "github" + } + }, + "pandoc-link-context_5": { + "flake": false, + "locked": { + "lastModified": 1650932770, + "narHash": "sha256-/WzE4O23B1OcL3WF8Saz5TRQj0tGH7FtbgRLRson2Mc=", + "owner": "srid", + "repo": "pandoc-link-context", + "rev": "85bd204339aafd309b8a3dd99ebffa6a50776cb6", + "type": "github" + }, + "original": { + "owner": "srid", + "ref": "master", + "repo": "pandoc-link-context", + "type": "github" + } + }, + "pathtree": { + "inputs": { + "flake-compat": "flake-compat_4", + "flake-utils": "flake-utils_5", + "nixpkgs": "nixpkgs_3" + }, + "locked": { + "lastModified": 1649011952, + "narHash": "sha256-RuNIoPXx0xy5TZ81JH33V8EqXWX5erv8gepM0Aaeat8=", + "owner": "srid", + "repo": "pathtree", + "rev": "d60f22b356f79663aca3f5fde9f23bb4a1412963", + "type": "github" + }, + "original": { + "owner": "srid", + "repo": "pathtree", + "type": "github" + } + }, + "pathtree_2": { + "inputs": { + "flake-compat": "flake-compat_8", + "flake-utils": "flake-utils_12", + "nixpkgs": "nixpkgs_11" + }, + "locked": { + "lastModified": 1649011952, + "narHash": "sha256-RuNIoPXx0xy5TZ81JH33V8EqXWX5erv8gepM0Aaeat8=", + "owner": "srid", + "repo": "pathtree", + "rev": "d60f22b356f79663aca3f5fde9f23bb4a1412963", + "type": "github" + }, + "original": { + "owner": "srid", + "repo": "pathtree", + "type": "github" + } + }, + "pathtree_3": { + "inputs": { + "flake-compat": "flake-compat_12", + "flake-utils": "flake-utils_18", + "nixpkgs": "nixpkgs_17" + }, + "locked": { + "lastModified": 1649011952, + "narHash": "sha256-RuNIoPXx0xy5TZ81JH33V8EqXWX5erv8gepM0Aaeat8=", + "owner": "srid", + "repo": "pathtree", + "rev": "d60f22b356f79663aca3f5fde9f23bb4a1412963", + "type": "github" + }, + "original": { + "owner": "srid", + "repo": "pathtree", + "type": "github" + } + }, + "pathtree_4": { + "inputs": { + "flake-compat": "flake-compat_16", + "flake-utils": "flake-utils_24", + "nixpkgs": "nixpkgs_23" + }, + "locked": { + "lastModified": 1649011952, + "narHash": "sha256-RuNIoPXx0xy5TZ81JH33V8EqXWX5erv8gepM0Aaeat8=", + "owner": "srid", + "repo": "pathtree", + "rev": "d60f22b356f79663aca3f5fde9f23bb4a1412963", + "type": "github" + }, + "original": { + "owner": "srid", + "repo": "pathtree", + "type": "github" + } + }, + "pathtree_5": { + "inputs": { + "flake-compat": "flake-compat_20", + "flake-utils": "flake-utils_30", + "nixpkgs": "nixpkgs_29" + }, + "locked": { + "lastModified": 1649011952, + "narHash": "sha256-RuNIoPXx0xy5TZ81JH33V8EqXWX5erv8gepM0Aaeat8=", + "owner": "srid", + "repo": "pathtree", + "rev": "d60f22b356f79663aca3f5fde9f23bb4a1412963", + "type": "github" + }, + "original": { + "owner": "srid", + "repo": "pathtree", + "type": "github" + } + }, "plutarch": { "inputs": { "Shrinker": "Shrinker", @@ -2002,11 +6951,7 @@ "cardano-crypto": "cardano-crypto", "cardano-prelude": "cardano-prelude", "cryptonite": "cryptonite", - "emanote": [ - "plutarch", - "haskell-nix", - "nixpkgs-unstable" - ], + "emanote": "emanote", "flat": "flat", "foundation": "foundation", "haskell-language-server": "haskell-language-server_2", @@ -2018,28 +6963,347 @@ "hspec-hedgehog": "hspec-hedgehog", "iohk-nix": "iohk-nix_2", "nixpkgs": [ + "liqwid-plutarch-extra", "plutarch", "haskell-nix", "nixpkgs-unstable" ], - "nixpkgs-2111": "nixpkgs-2111_5", "plutus": "plutus_2", "protolude": "protolude", "sized-functors": "sized-functors", "th-extras": "th-extras" }, "locked": { - "lastModified": 1650382454, - "narHash": "sha256-b31DK+E/0MtR45+Z+F5U1E8jjcewvZ42UmFLZlXDAYM=", - "owner": "peter-mlabs", + "lastModified": 1652353304, + "narHash": "sha256-DeSwiDyJeI9had5OCxLiGtYeDl07Vic0cR8RETBLY9k=", + "owner": "Liqwid-Labs", "repo": "plutarch", - "rev": "6ef18aacd02050fc07398e399cff5e8734c1045e", + "rev": "ae2059f11f24d47bedeaa18749d01711cddab0bc", "type": "github" }, "original": { - "owner": "peter-mlabs", + "owner": "Liqwid-Labs", + "ref": "staging", + "repo": "plutarch", + "type": "github" + } + }, + "plutarch-numeric": { + "inputs": { + "haskell-nix": [ + "plutarch-numeric", + "plutarch", + "haskell-nix" + ], + "nixpkgs": [ + "plutarch-numeric", + "plutarch", + "nixpkgs" + ], + "nixpkgs-2111": "nixpkgs-2111_7", + "plutarch": "plutarch_3" + }, + "locked": { + "lastModified": 1653523611, + "narHash": "sha256-Qt5tFw8NCkMo+QLuRrM07cZ6qZHDbKHEtfCFJdBBZGw=", + "ref": "main", + "rev": "5bccbdd1d4b6cdb000e40f7ab5ea3937e0384477", + "revCount": 2, + "type": "git", + "url": "ssh://git@github.com/Liqwid-Labs/plutarch-numeric" + }, + "original": { + "ref": "main", + "type": "git", + "url": "ssh://git@github.com/Liqwid-Labs/plutarch-numeric" + } + }, + "plutarch-numeric_2": { + "inputs": { + "haskell-nix": [ + "plutarch-safe-money", + "plutarch-numeric", + "plutarch", + "haskell-nix" + ], + "nixpkgs": [ + "plutarch-safe-money", + "plutarch-numeric", + "plutarch", + "nixpkgs" + ], + "nixpkgs-2111": "nixpkgs-2111_13", + "plutarch": "plutarch_6" + }, + "locked": { + "lastModified": 1653523611, + "narHash": "sha256-Qt5tFw8NCkMo+QLuRrM07cZ6qZHDbKHEtfCFJdBBZGw=", + "ref": "main", + "rev": "5bccbdd1d4b6cdb000e40f7ab5ea3937e0384477", + "revCount": 2, + "type": "git", + "url": "ssh://git@github.com/Liqwid-Labs/plutarch-numeric" + }, + "original": { + "ref": "main", + "type": "git", + "url": "ssh://git@github.com/Liqwid-Labs/plutarch-numeric" + } + }, + "plutarch-safe-money": { + "inputs": { + "haskell-nix": [ + "plutarch-safe-money", + "plutarch", + "haskell-nix" + ], + "liqwid-plutarch-extra": "liqwid-plutarch-extra_2", + "nixpkgs": [ + "plutarch-safe-money", + "plutarch", + "nixpkgs" + ], + "nixpkgs-2111": "nixpkgs-2111_11", + "plutarch": "plutarch_5", + "plutarch-numeric": "plutarch-numeric_2" + }, + "locked": { + "lastModified": 1653536468, + "narHash": "sha256-Waq06H56JwUuY3LEHUACh63dLmXjmDfnQODzHquqff8=", + "ref": "main", + "rev": "07564a1b5151ba922527b8f31c954bc1482ad513", + "revCount": 5, + "type": "git", + "url": "ssh://git@github.com/Liqwid-Labs/plutarch-safe-money" + }, + "original": { + "ref": "main", + "type": "git", + "url": "ssh://git@github.com/Liqwid-Labs/plutarch-safe-money" + } + }, + "plutarch_2": { + "inputs": { + "Shrinker": "Shrinker_2", + "cardano-base": "cardano-base_2", + "cardano-crypto": "cardano-crypto_2", + "cardano-prelude": "cardano-prelude_2", + "cryptonite": "cryptonite_2", + "emanote": [ + "plutarch", + "haskell-nix", + "nixpkgs-unstable" + ], + "flat": "flat_2", + "foundation": "foundation_2", + "haskell-language-server": "haskell-language-server_4", + "haskell-nix": "haskell-nix_6", + "hercules-ci-effects": "hercules-ci-effects_2", + "hs-memory": "hs-memory_2", + "hspec": "hspec_2", + "hspec-golden": "hspec-golden_2", + "hspec-hedgehog": "hspec-hedgehog_2", + "iohk-nix": "iohk-nix_4", + "nixpkgs": [ + "plutarch", + "haskell-nix", + "nixpkgs-unstable" + ], + "plutus": "plutus_3", + "protolude": "protolude_2", + "sized-functors": "sized-functors_2", + "th-extras": "th-extras_2" + }, + "locked": { + "lastModified": 1652353304, + "narHash": "sha256-DeSwiDyJeI9had5OCxLiGtYeDl07Vic0cR8RETBLY9k=", + "owner": "liqwid-labs", + "repo": "plutarch", + "rev": "ae2059f11f24d47bedeaa18749d01711cddab0bc", + "type": "github" + }, + "original": { + "owner": "liqwid-labs", + "ref": "staging", + "repo": "plutarch", + "type": "github" + } + }, + "plutarch_3": { + "inputs": { + "Shrinker": "Shrinker_3", + "cardano-base": "cardano-base_3", + "cardano-crypto": "cardano-crypto_3", + "cardano-prelude": "cardano-prelude_3", + "cryptonite": "cryptonite_3", + "emanote": "emanote_2", + "flat": "flat_3", + "foundation": "foundation_3", + "haskell-language-server": "haskell-language-server_6", + "haskell-nix": "haskell-nix_8", + "hercules-ci-effects": "hercules-ci-effects_3", + "hs-memory": "hs-memory_3", + "hspec": "hspec_3", + "hspec-golden": "hspec-golden_3", + "hspec-hedgehog": "hspec-hedgehog_3", + "iohk-nix": "iohk-nix_6", + "nixpkgs": [ + "plutarch-numeric", + "plutarch", + "haskell-nix", + "nixpkgs-unstable" + ], + "plutus": "plutus_4", + "protolude": "protolude_3", + "sized-functors": "sized-functors_3", + "th-extras": "th-extras_3" + }, + "locked": { + "lastModified": 1652353304, + "narHash": "sha256-DeSwiDyJeI9had5OCxLiGtYeDl07Vic0cR8RETBLY9k=", + "owner": "Liqwid-Labs", + "repo": "plutarch", + "rev": "ae2059f11f24d47bedeaa18749d01711cddab0bc", + "type": "github" + }, + "original": { + "owner": "Liqwid-Labs", + "ref": "staging", + "repo": "plutarch", + "type": "github" + } + }, + "plutarch_4": { + "inputs": { + "Shrinker": "Shrinker_4", + "cardano-base": "cardano-base_4", + "cardano-crypto": "cardano-crypto_4", + "cardano-prelude": "cardano-prelude_4", + "cryptonite": "cryptonite_4", + "emanote": "emanote_3", + "flat": "flat_4", + "foundation": "foundation_4", + "haskell-language-server": "haskell-language-server_8", + "haskell-nix": "haskell-nix_10", + "hercules-ci-effects": "hercules-ci-effects_4", + "hs-memory": "hs-memory_4", + "hspec": "hspec_4", + "hspec-golden": "hspec-golden_4", + "hspec-hedgehog": "hspec-hedgehog_4", + "iohk-nix": "iohk-nix_8", + "nixpkgs": [ + "plutarch-safe-money", + "liqwid-plutarch-extra", + "plutarch", + "haskell-nix", + "nixpkgs-unstable" + ], + "plutus": "plutus_5", + "protolude": "protolude_4", + "sized-functors": "sized-functors_4", + "th-extras": "th-extras_4" + }, + "locked": { + "lastModified": 1652353304, + "narHash": "sha256-DeSwiDyJeI9had5OCxLiGtYeDl07Vic0cR8RETBLY9k=", + "owner": "Liqwid-Labs", + "repo": "plutarch", + "rev": "ae2059f11f24d47bedeaa18749d01711cddab0bc", + "type": "github" + }, + "original": { + "owner": "Liqwid-Labs", + "ref": "staging", + "repo": "plutarch", + "type": "github" + } + }, + "plutarch_5": { + "inputs": { + "Shrinker": "Shrinker_5", + "cardano-base": "cardano-base_5", + "cardano-crypto": "cardano-crypto_5", + "cardano-prelude": "cardano-prelude_5", + "cryptonite": "cryptonite_5", + "emanote": "emanote_4", + "flat": "flat_5", + "foundation": "foundation_5", + "haskell-language-server": "haskell-language-server_10", + "haskell-nix": "haskell-nix_12", + "hercules-ci-effects": "hercules-ci-effects_5", + "hs-memory": "hs-memory_5", + "hspec": "hspec_5", + "hspec-golden": "hspec-golden_5", + "hspec-hedgehog": "hspec-hedgehog_5", + "iohk-nix": "iohk-nix_10", + "nixpkgs": [ + "plutarch-safe-money", + "plutarch", + "haskell-nix", + "nixpkgs-unstable" + ], + "plutus": "plutus_6", + "protolude": "protolude_5", + "sized-functors": "sized-functors_5", + "th-extras": "th-extras_5" + }, + "locked": { + "lastModified": 1652353304, + "narHash": "sha256-DeSwiDyJeI9had5OCxLiGtYeDl07Vic0cR8RETBLY9k=", + "owner": "Liqwid-Labs", + "repo": "plutarch", + "rev": "ae2059f11f24d47bedeaa18749d01711cddab0bc", + "type": "github" + }, + "original": { + "owner": "Liqwid-Labs", + "ref": "staging", + "repo": "plutarch", + "type": "github" + } + }, + "plutarch_6": { + "inputs": { + "Shrinker": "Shrinker_6", + "cardano-base": "cardano-base_6", + "cardano-crypto": "cardano-crypto_6", + "cardano-prelude": "cardano-prelude_6", + "cryptonite": "cryptonite_6", + "emanote": "emanote_5", + "flat": "flat_6", + "foundation": "foundation_6", + "haskell-language-server": "haskell-language-server_12", + "haskell-nix": "haskell-nix_14", + "hercules-ci-effects": "hercules-ci-effects_6", + "hs-memory": "hs-memory_6", + "hspec": "hspec_6", + "hspec-golden": "hspec-golden_6", + "hspec-hedgehog": "hspec-hedgehog_6", + "iohk-nix": "iohk-nix_12", + "nixpkgs": [ + "plutarch-safe-money", + "plutarch-numeric", + "plutarch", + "haskell-nix", + "nixpkgs-unstable" + ], + "plutus": "plutus_7", + "protolude": "protolude_6", + "sized-functors": "sized-functors_6", + "th-extras": "th-extras_6" + }, + "locked": { + "lastModified": 1652353304, + "narHash": "sha256-DeSwiDyJeI9had5OCxLiGtYeDl07Vic0cR8RETBLY9k=", + "owner": "Liqwid-Labs", + "repo": "plutarch", + "rev": "ae2059f11f24d47bedeaa18749d01711cddab0bc", + "type": "github" + }, + "original": { + "owner": "Liqwid-Labs", + "ref": "staging", "repo": "plutarch", - "rev": "6ef18aacd02050fc07398e399cff5e8734c1045e", "type": "github" } }, @@ -2078,8 +7342,8 @@ "haskell-language-server": "haskell-language-server_3", "haskell-nix": "haskell-nix_5", "iohk-nix": "iohk-nix_3", - "nixpkgs": "nixpkgs_4", - "pre-commit-hooks-nix": "pre-commit-hooks-nix_3", + "nixpkgs": "nixpkgs_7", + "pre-commit-hooks-nix": "pre-commit-hooks-nix_2", "sphinxcontrib-haddock": "sphinxcontrib-haddock_2", "stackage-nix": "stackage-nix_2" }, @@ -2098,6 +7362,146 @@ "type": "github" } }, + "plutus_3": { + "inputs": { + "cardano-repo-tool": "cardano-repo-tool_3", + "gitignore-nix": "gitignore-nix_3", + "hackage-nix": "hackage-nix_3", + "haskell-language-server": "haskell-language-server_5", + "haskell-nix": "haskell-nix_7", + "iohk-nix": "iohk-nix_5", + "nixpkgs": "nixpkgs_9", + "pre-commit-hooks-nix": "pre-commit-hooks-nix_3", + "sphinxcontrib-haddock": "sphinxcontrib-haddock_3", + "stackage-nix": "stackage-nix_3" + }, + "locked": { + "lastModified": 1645203653, + "narHash": "sha256-HAi60mSkyMXzu1Wg3h6KdYZg+ufNMvX6obfcLo0ArL0=", + "owner": "L-as", + "repo": "plutus", + "rev": "5ec17953aae3ac9546f6d923201eb1dbb4e058bb", + "type": "github" + }, + "original": { + "owner": "L-as", + "ref": "ghc9", + "repo": "plutus", + "type": "github" + } + }, + "plutus_4": { + "inputs": { + "cardano-repo-tool": "cardano-repo-tool_4", + "gitignore-nix": "gitignore-nix_4", + "hackage-nix": "hackage-nix_4", + "haskell-language-server": "haskell-language-server_7", + "haskell-nix": "haskell-nix_9", + "iohk-nix": "iohk-nix_7", + "nixpkgs": "nixpkgs_15", + "pre-commit-hooks-nix": "pre-commit-hooks-nix_4", + "sphinxcontrib-haddock": "sphinxcontrib-haddock_4", + "stackage-nix": "stackage-nix_4" + }, + "locked": { + "lastModified": 1645203653, + "narHash": "sha256-HAi60mSkyMXzu1Wg3h6KdYZg+ufNMvX6obfcLo0ArL0=", + "owner": "L-as", + "repo": "plutus", + "rev": "5ec17953aae3ac9546f6d923201eb1dbb4e058bb", + "type": "github" + }, + "original": { + "owner": "L-as", + "ref": "ghc9", + "repo": "plutus", + "type": "github" + } + }, + "plutus_5": { + "inputs": { + "cardano-repo-tool": "cardano-repo-tool_5", + "gitignore-nix": "gitignore-nix_5", + "hackage-nix": "hackage-nix_5", + "haskell-language-server": "haskell-language-server_9", + "haskell-nix": "haskell-nix_11", + "iohk-nix": "iohk-nix_9", + "nixpkgs": "nixpkgs_21", + "pre-commit-hooks-nix": "pre-commit-hooks-nix_5", + "sphinxcontrib-haddock": "sphinxcontrib-haddock_5", + "stackage-nix": "stackage-nix_5" + }, + "locked": { + "lastModified": 1645203653, + "narHash": "sha256-HAi60mSkyMXzu1Wg3h6KdYZg+ufNMvX6obfcLo0ArL0=", + "owner": "L-as", + "repo": "plutus", + "rev": "5ec17953aae3ac9546f6d923201eb1dbb4e058bb", + "type": "github" + }, + "original": { + "owner": "L-as", + "ref": "ghc9", + "repo": "plutus", + "type": "github" + } + }, + "plutus_6": { + "inputs": { + "cardano-repo-tool": "cardano-repo-tool_6", + "gitignore-nix": "gitignore-nix_6", + "hackage-nix": "hackage-nix_6", + "haskell-language-server": "haskell-language-server_11", + "haskell-nix": "haskell-nix_13", + "iohk-nix": "iohk-nix_11", + "nixpkgs": "nixpkgs_27", + "pre-commit-hooks-nix": "pre-commit-hooks-nix_6", + "sphinxcontrib-haddock": "sphinxcontrib-haddock_6", + "stackage-nix": "stackage-nix_6" + }, + "locked": { + "lastModified": 1645203653, + "narHash": "sha256-HAi60mSkyMXzu1Wg3h6KdYZg+ufNMvX6obfcLo0ArL0=", + "owner": "L-as", + "repo": "plutus", + "rev": "5ec17953aae3ac9546f6d923201eb1dbb4e058bb", + "type": "github" + }, + "original": { + "owner": "L-as", + "ref": "ghc9", + "repo": "plutus", + "type": "github" + } + }, + "plutus_7": { + "inputs": { + "cardano-repo-tool": "cardano-repo-tool_7", + "gitignore-nix": "gitignore-nix_7", + "hackage-nix": "hackage-nix_7", + "haskell-language-server": "haskell-language-server_13", + "haskell-nix": "haskell-nix_15", + "iohk-nix": "iohk-nix_13", + "nixpkgs": "nixpkgs_33", + "pre-commit-hooks-nix": "pre-commit-hooks-nix_7", + "sphinxcontrib-haddock": "sphinxcontrib-haddock_7", + "stackage-nix": "stackage-nix_7" + }, + "locked": { + "lastModified": 1645203653, + "narHash": "sha256-HAi60mSkyMXzu1Wg3h6KdYZg+ufNMvX6obfcLo0ArL0=", + "owner": "L-as", + "repo": "plutus", + "rev": "5ec17953aae3ac9546f6d923201eb1dbb4e058bb", + "type": "github" + }, + "original": { + "owner": "L-as", + "ref": "ghc9", + "repo": "plutus", + "type": "github" + } + }, "pre-commit-hooks-nix": { "flake": false, "locked": { @@ -2117,11 +7521,11 @@ "pre-commit-hooks-nix_2": { "flake": false, "locked": { - "lastModified": 1622650193, - "narHash": "sha256-qSzUpJDv04ajS9FXoCq6NjVF3qOt9IiGIiGh0P8amyw=", + "lastModified": 1624971177, + "narHash": "sha256-Amf/nBj1E77RmbSSmV+hg6YOpR+rddCbbVgo5C7BS0I=", "owner": "cachix", "repo": "pre-commit-hooks.nix", - "rev": "0398f0649e0a741660ac5e8216760bae5cc78579", + "rev": "397f0713d007250a2c7a745e555fa16c5dc8cadb", "type": "github" }, "original": { @@ -2146,6 +7550,70 @@ "type": "github" } }, + "pre-commit-hooks-nix_4": { + "flake": false, + "locked": { + "lastModified": 1624971177, + "narHash": "sha256-Amf/nBj1E77RmbSSmV+hg6YOpR+rddCbbVgo5C7BS0I=", + "owner": "cachix", + "repo": "pre-commit-hooks.nix", + "rev": "397f0713d007250a2c7a745e555fa16c5dc8cadb", + "type": "github" + }, + "original": { + "owner": "cachix", + "repo": "pre-commit-hooks.nix", + "type": "github" + } + }, + "pre-commit-hooks-nix_5": { + "flake": false, + "locked": { + "lastModified": 1624971177, + "narHash": "sha256-Amf/nBj1E77RmbSSmV+hg6YOpR+rddCbbVgo5C7BS0I=", + "owner": "cachix", + "repo": "pre-commit-hooks.nix", + "rev": "397f0713d007250a2c7a745e555fa16c5dc8cadb", + "type": "github" + }, + "original": { + "owner": "cachix", + "repo": "pre-commit-hooks.nix", + "type": "github" + } + }, + "pre-commit-hooks-nix_6": { + "flake": false, + "locked": { + "lastModified": 1624971177, + "narHash": "sha256-Amf/nBj1E77RmbSSmV+hg6YOpR+rddCbbVgo5C7BS0I=", + "owner": "cachix", + "repo": "pre-commit-hooks.nix", + "rev": "397f0713d007250a2c7a745e555fa16c5dc8cadb", + "type": "github" + }, + "original": { + "owner": "cachix", + "repo": "pre-commit-hooks.nix", + "type": "github" + } + }, + "pre-commit-hooks-nix_7": { + "flake": false, + "locked": { + "lastModified": 1624971177, + "narHash": "sha256-Amf/nBj1E77RmbSSmV+hg6YOpR+rddCbbVgo5C7BS0I=", + "owner": "cachix", + "repo": "pre-commit-hooks.nix", + "rev": "397f0713d007250a2c7a745e555fa16c5dc8cadb", + "type": "github" + }, + "original": { + "owner": "cachix", + "repo": "pre-commit-hooks.nix", + "type": "github" + } + }, "protolude": { "flake": false, "locked": { @@ -2163,10 +7631,95 @@ "type": "github" } }, + "protolude_2": { + "flake": false, + "locked": { + "lastModified": 1637276813, + "narHash": "sha256-/mgR1Vyp1WYBjdkbwQycrf6lcmOgUFcYUZIMhVgYhdo=", + "owner": "protolude", + "repo": "protolude", + "rev": "d821ef0ac7552cfa2c3e7a7bdf29539f57e3fae6", + "type": "github" + }, + "original": { + "owner": "protolude", + "repo": "protolude", + "rev": "d821ef0ac7552cfa2c3e7a7bdf29539f57e3fae6", + "type": "github" + } + }, + "protolude_3": { + "flake": false, + "locked": { + "lastModified": 1637276813, + "narHash": "sha256-/mgR1Vyp1WYBjdkbwQycrf6lcmOgUFcYUZIMhVgYhdo=", + "owner": "protolude", + "repo": "protolude", + "rev": "d821ef0ac7552cfa2c3e7a7bdf29539f57e3fae6", + "type": "github" + }, + "original": { + "owner": "protolude", + "repo": "protolude", + "rev": "d821ef0ac7552cfa2c3e7a7bdf29539f57e3fae6", + "type": "github" + } + }, + "protolude_4": { + "flake": false, + "locked": { + "lastModified": 1637276813, + "narHash": "sha256-/mgR1Vyp1WYBjdkbwQycrf6lcmOgUFcYUZIMhVgYhdo=", + "owner": "protolude", + "repo": "protolude", + "rev": "d821ef0ac7552cfa2c3e7a7bdf29539f57e3fae6", + "type": "github" + }, + "original": { + "owner": "protolude", + "repo": "protolude", + "rev": "d821ef0ac7552cfa2c3e7a7bdf29539f57e3fae6", + "type": "github" + } + }, + "protolude_5": { + "flake": false, + "locked": { + "lastModified": 1637276813, + "narHash": "sha256-/mgR1Vyp1WYBjdkbwQycrf6lcmOgUFcYUZIMhVgYhdo=", + "owner": "protolude", + "repo": "protolude", + "rev": "d821ef0ac7552cfa2c3e7a7bdf29539f57e3fae6", + "type": "github" + }, + "original": { + "owner": "protolude", + "repo": "protolude", + "rev": "d821ef0ac7552cfa2c3e7a7bdf29539f57e3fae6", + "type": "github" + } + }, + "protolude_6": { + "flake": false, + "locked": { + "lastModified": 1637276813, + "narHash": "sha256-/mgR1Vyp1WYBjdkbwQycrf6lcmOgUFcYUZIMhVgYhdo=", + "owner": "protolude", + "repo": "protolude", + "rev": "d821ef0ac7552cfa2c3e7a7bdf29539f57e3fae6", + "type": "github" + }, + "original": { + "owner": "protolude", + "repo": "protolude", + "rev": "d821ef0ac7552cfa2c3e7a7bdf29539f57e3fae6", + "type": "github" + } + }, "purescript-bridge": { "inputs": { "easy-ps": "easy-ps", - "flake-utils": "flake-utils_4", + "flake-utils": "flake-utils_34", "haskellNix": "haskellNix", "nixpkgs": [ "purescript-bridge", @@ -2197,12 +7750,15 @@ "plutarch", "haskell-nix" ], + "liqwid-plutarch-extra": "liqwid-plutarch-extra", "nixpkgs": [ "plutarch", "nixpkgs" ], - "nixpkgs-2111": "nixpkgs-2111_3", - "plutarch": "plutarch", + "nixpkgs-2111": "nixpkgs-2111_5", + "plutarch": "plutarch_2", + "plutarch-numeric": "plutarch-numeric", + "plutarch-safe-money": "plutarch-safe-money", "purescript-bridge": "purescript-bridge" } }, @@ -2223,6 +7779,91 @@ "type": "github" } }, + "sized-functors_2": { + "flake": false, + "locked": { + "lastModified": 1620614934, + "narHash": "sha256-pVJbEGF4/lvXmWIypwkMQBYygOx3TQwLJbMpfdYovdY=", + "owner": "JonasDuregard", + "repo": "sized-functors", + "rev": "fe6bf78a1b97ff7429630d0e8974c9bc40945dcf", + "type": "github" + }, + "original": { + "owner": "JonasDuregard", + "repo": "sized-functors", + "rev": "fe6bf78a1b97ff7429630d0e8974c9bc40945dcf", + "type": "github" + } + }, + "sized-functors_3": { + "flake": false, + "locked": { + "lastModified": 1620614934, + "narHash": "sha256-pVJbEGF4/lvXmWIypwkMQBYygOx3TQwLJbMpfdYovdY=", + "owner": "JonasDuregard", + "repo": "sized-functors", + "rev": "fe6bf78a1b97ff7429630d0e8974c9bc40945dcf", + "type": "github" + }, + "original": { + "owner": "JonasDuregard", + "repo": "sized-functors", + "rev": "fe6bf78a1b97ff7429630d0e8974c9bc40945dcf", + "type": "github" + } + }, + "sized-functors_4": { + "flake": false, + "locked": { + "lastModified": 1620614934, + "narHash": "sha256-pVJbEGF4/lvXmWIypwkMQBYygOx3TQwLJbMpfdYovdY=", + "owner": "JonasDuregard", + "repo": "sized-functors", + "rev": "fe6bf78a1b97ff7429630d0e8974c9bc40945dcf", + "type": "github" + }, + "original": { + "owner": "JonasDuregard", + "repo": "sized-functors", + "rev": "fe6bf78a1b97ff7429630d0e8974c9bc40945dcf", + "type": "github" + } + }, + "sized-functors_5": { + "flake": false, + "locked": { + "lastModified": 1620614934, + "narHash": "sha256-pVJbEGF4/lvXmWIypwkMQBYygOx3TQwLJbMpfdYovdY=", + "owner": "JonasDuregard", + "repo": "sized-functors", + "rev": "fe6bf78a1b97ff7429630d0e8974c9bc40945dcf", + "type": "github" + }, + "original": { + "owner": "JonasDuregard", + "repo": "sized-functors", + "rev": "fe6bf78a1b97ff7429630d0e8974c9bc40945dcf", + "type": "github" + } + }, + "sized-functors_6": { + "flake": false, + "locked": { + "lastModified": 1620614934, + "narHash": "sha256-pVJbEGF4/lvXmWIypwkMQBYygOx3TQwLJbMpfdYovdY=", + "owner": "JonasDuregard", + "repo": "sized-functors", + "rev": "fe6bf78a1b97ff7429630d0e8974c9bc40945dcf", + "type": "github" + }, + "original": { + "owner": "JonasDuregard", + "repo": "sized-functors", + "rev": "fe6bf78a1b97ff7429630d0e8974c9bc40945dcf", + "type": "github" + } + }, "sphinxcontrib-haddock": { "flake": false, "locked": { @@ -2255,6 +7896,86 @@ "type": "github" } }, + "sphinxcontrib-haddock_3": { + "flake": false, + "locked": { + "lastModified": 1594136664, + "narHash": "sha256-O9YT3iCUBHP3CEF88VDLLCO2HSP3HqkNA2q2939RnVY=", + "owner": "michaelpj", + "repo": "sphinxcontrib-haddock", + "rev": "f3956b3256962b2d27d5a4e96edb7951acf5de34", + "type": "github" + }, + "original": { + "owner": "michaelpj", + "repo": "sphinxcontrib-haddock", + "type": "github" + } + }, + "sphinxcontrib-haddock_4": { + "flake": false, + "locked": { + "lastModified": 1594136664, + "narHash": "sha256-O9YT3iCUBHP3CEF88VDLLCO2HSP3HqkNA2q2939RnVY=", + "owner": "michaelpj", + "repo": "sphinxcontrib-haddock", + "rev": "f3956b3256962b2d27d5a4e96edb7951acf5de34", + "type": "github" + }, + "original": { + "owner": "michaelpj", + "repo": "sphinxcontrib-haddock", + "type": "github" + } + }, + "sphinxcontrib-haddock_5": { + "flake": false, + "locked": { + "lastModified": 1594136664, + "narHash": "sha256-O9YT3iCUBHP3CEF88VDLLCO2HSP3HqkNA2q2939RnVY=", + "owner": "michaelpj", + "repo": "sphinxcontrib-haddock", + "rev": "f3956b3256962b2d27d5a4e96edb7951acf5de34", + "type": "github" + }, + "original": { + "owner": "michaelpj", + "repo": "sphinxcontrib-haddock", + "type": "github" + } + }, + "sphinxcontrib-haddock_6": { + "flake": false, + "locked": { + "lastModified": 1594136664, + "narHash": "sha256-O9YT3iCUBHP3CEF88VDLLCO2HSP3HqkNA2q2939RnVY=", + "owner": "michaelpj", + "repo": "sphinxcontrib-haddock", + "rev": "f3956b3256962b2d27d5a4e96edb7951acf5de34", + "type": "github" + }, + "original": { + "owner": "michaelpj", + "repo": "sphinxcontrib-haddock", + "type": "github" + } + }, + "sphinxcontrib-haddock_7": { + "flake": false, + "locked": { + "lastModified": 1594136664, + "narHash": "sha256-O9YT3iCUBHP3CEF88VDLLCO2HSP3HqkNA2q2939RnVY=", + "owner": "michaelpj", + "repo": "sphinxcontrib-haddock", + "rev": "f3956b3256962b2d27d5a4e96edb7951acf5de34", + "type": "github" + }, + "original": { + "owner": "michaelpj", + "repo": "sphinxcontrib-haddock", + "type": "github" + } + }, "stackage": { "flake": false, "locked": { @@ -2303,6 +8024,86 @@ "type": "github" } }, + "stackage-nix_3": { + "flake": false, + "locked": { + "lastModified": 1597712578, + "narHash": "sha256-c/pcfZ6w5Yp//7oC0hErOGVVphBLc5vc4IZlWKZ/t6E=", + "owner": "input-output-hk", + "repo": "stackage.nix", + "rev": "e32c8b06d56954865725514ce0d98d5d1867e43a", + "type": "github" + }, + "original": { + "owner": "input-output-hk", + "repo": "stackage.nix", + "type": "github" + } + }, + "stackage-nix_4": { + "flake": false, + "locked": { + "lastModified": 1597712578, + "narHash": "sha256-c/pcfZ6w5Yp//7oC0hErOGVVphBLc5vc4IZlWKZ/t6E=", + "owner": "input-output-hk", + "repo": "stackage.nix", + "rev": "e32c8b06d56954865725514ce0d98d5d1867e43a", + "type": "github" + }, + "original": { + "owner": "input-output-hk", + "repo": "stackage.nix", + "type": "github" + } + }, + "stackage-nix_5": { + "flake": false, + "locked": { + "lastModified": 1597712578, + "narHash": "sha256-c/pcfZ6w5Yp//7oC0hErOGVVphBLc5vc4IZlWKZ/t6E=", + "owner": "input-output-hk", + "repo": "stackage.nix", + "rev": "e32c8b06d56954865725514ce0d98d5d1867e43a", + "type": "github" + }, + "original": { + "owner": "input-output-hk", + "repo": "stackage.nix", + "type": "github" + } + }, + "stackage-nix_6": { + "flake": false, + "locked": { + "lastModified": 1597712578, + "narHash": "sha256-c/pcfZ6w5Yp//7oC0hErOGVVphBLc5vc4IZlWKZ/t6E=", + "owner": "input-output-hk", + "repo": "stackage.nix", + "rev": "e32c8b06d56954865725514ce0d98d5d1867e43a", + "type": "github" + }, + "original": { + "owner": "input-output-hk", + "repo": "stackage.nix", + "type": "github" + } + }, + "stackage-nix_7": { + "flake": false, + "locked": { + "lastModified": 1597712578, + "narHash": "sha256-c/pcfZ6w5Yp//7oC0hErOGVVphBLc5vc4IZlWKZ/t6E=", + "owner": "input-output-hk", + "repo": "stackage.nix", + "rev": "e32c8b06d56954865725514ce0d98d5d1867e43a", + "type": "github" + }, + "original": { + "owner": "input-output-hk", + "repo": "stackage.nix", + "type": "github" + } + }, "stackage_2": { "flake": false, "locked": { @@ -2322,11 +8123,11 @@ "stackage_3": { "flake": false, "locked": { - "lastModified": 1642468901, - "narHash": "sha256-+Hu4m9i8v8Moey/C8fy8juyxB729JdsXz02cK8nJXLk=", + "lastModified": 1644887829, + "narHash": "sha256-tjUXJpqB7MMnqM4FF5cdtZipfratUcTKRQVA6F77sEQ=", "owner": "input-output-hk", "repo": "stackage.nix", - "rev": "7544f8fd16bb92b7cf90cb51cb4ddc43173526de", + "rev": "db8bdef6588cf4f38e6069075ba76f0024381f68", "type": "github" }, "original": { @@ -2338,11 +8139,11 @@ "stackage_4": { "flake": false, "locked": { - "lastModified": 1652404704, - "narHash": "sha256-RAi3IebJ508ceEVisDjsSYJPNUbQbLPHs1SD+L08OYw=", + "lastModified": 1644887829, + "narHash": "sha256-tjUXJpqB7MMnqM4FF5cdtZipfratUcTKRQVA6F77sEQ=", "owner": "input-output-hk", "repo": "stackage.nix", - "rev": "947645a2ded85ae0e7d1098314f37c44a0227b98", + "rev": "db8bdef6588cf4f38e6069075ba76f0024381f68", "type": "github" }, "original": { @@ -2351,6 +8152,191 @@ "type": "github" } }, + "stackage_5": { + "flake": false, + "locked": { + "lastModified": 1644887829, + "narHash": "sha256-tjUXJpqB7MMnqM4FF5cdtZipfratUcTKRQVA6F77sEQ=", + "owner": "input-output-hk", + "repo": "stackage.nix", + "rev": "db8bdef6588cf4f38e6069075ba76f0024381f68", + "type": "github" + }, + "original": { + "owner": "input-output-hk", + "repo": "stackage.nix", + "type": "github" + } + }, + "stackage_6": { + "flake": false, + "locked": { + "lastModified": 1644887829, + "narHash": "sha256-tjUXJpqB7MMnqM4FF5cdtZipfratUcTKRQVA6F77sEQ=", + "owner": "input-output-hk", + "repo": "stackage.nix", + "rev": "db8bdef6588cf4f38e6069075ba76f0024381f68", + "type": "github" + }, + "original": { + "owner": "input-output-hk", + "repo": "stackage.nix", + "type": "github" + } + }, + "stackage_7": { + "flake": false, + "locked": { + "lastModified": 1644887829, + "narHash": "sha256-tjUXJpqB7MMnqM4FF5cdtZipfratUcTKRQVA6F77sEQ=", + "owner": "input-output-hk", + "repo": "stackage.nix", + "rev": "db8bdef6588cf4f38e6069075ba76f0024381f68", + "type": "github" + }, + "original": { + "owner": "input-output-hk", + "repo": "stackage.nix", + "type": "github" + } + }, + "stackage_8": { + "flake": false, + "locked": { + "lastModified": 1644887829, + "narHash": "sha256-tjUXJpqB7MMnqM4FF5cdtZipfratUcTKRQVA6F77sEQ=", + "owner": "input-output-hk", + "repo": "stackage.nix", + "rev": "db8bdef6588cf4f38e6069075ba76f0024381f68", + "type": "github" + }, + "original": { + "owner": "input-output-hk", + "repo": "stackage.nix", + "type": "github" + } + }, + "stackage_9": { + "flake": false, + "locked": { + "lastModified": 1633224172, + "narHash": "sha256-Hw2jWJiS6ky0D5BhSyaw5PItzmTpRni4BUcCJmbESWk=", + "owner": "input-output-hk", + "repo": "stackage.nix", + "rev": "948c9bde3d0b3aa452e0b19c34ae6385ac563160", + "type": "github" + }, + "original": { + "owner": "input-output-hk", + "repo": "stackage.nix", + "type": "github" + } + }, + "tailwind-haskell": { + "inputs": { + "flake-compat": "flake-compat_5", + "flake-utils": "flake-utils_6", + "nixpkgs": "nixpkgs_4" + }, + "locked": { + "lastModified": 1649519562, + "narHash": "sha256-IVZ4D7JkSCn0sjeTw5b0s2TTIU+g4hk78u1znXY4JjQ=", + "owner": "srid", + "repo": "tailwind-haskell", + "rev": "f5bfc15da3ee6e74a077579fb10269bb450fa5cb", + "type": "github" + }, + "original": { + "owner": "srid", + "ref": "master", + "repo": "tailwind-haskell", + "type": "github" + } + }, + "tailwind-haskell_2": { + "inputs": { + "flake-compat": "flake-compat_9", + "flake-utils": "flake-utils_13", + "nixpkgs": "nixpkgs_12" + }, + "locked": { + "lastModified": 1649519562, + "narHash": "sha256-IVZ4D7JkSCn0sjeTw5b0s2TTIU+g4hk78u1znXY4JjQ=", + "owner": "srid", + "repo": "tailwind-haskell", + "rev": "f5bfc15da3ee6e74a077579fb10269bb450fa5cb", + "type": "github" + }, + "original": { + "owner": "srid", + "ref": "master", + "repo": "tailwind-haskell", + "type": "github" + } + }, + "tailwind-haskell_3": { + "inputs": { + "flake-compat": "flake-compat_13", + "flake-utils": "flake-utils_19", + "nixpkgs": "nixpkgs_18" + }, + "locked": { + "lastModified": 1649519562, + "narHash": "sha256-IVZ4D7JkSCn0sjeTw5b0s2TTIU+g4hk78u1znXY4JjQ=", + "owner": "srid", + "repo": "tailwind-haskell", + "rev": "f5bfc15da3ee6e74a077579fb10269bb450fa5cb", + "type": "github" + }, + "original": { + "owner": "srid", + "ref": "master", + "repo": "tailwind-haskell", + "type": "github" + } + }, + "tailwind-haskell_4": { + "inputs": { + "flake-compat": "flake-compat_17", + "flake-utils": "flake-utils_25", + "nixpkgs": "nixpkgs_24" + }, + "locked": { + "lastModified": 1649519562, + "narHash": "sha256-IVZ4D7JkSCn0sjeTw5b0s2TTIU+g4hk78u1znXY4JjQ=", + "owner": "srid", + "repo": "tailwind-haskell", + "rev": "f5bfc15da3ee6e74a077579fb10269bb450fa5cb", + "type": "github" + }, + "original": { + "owner": "srid", + "ref": "master", + "repo": "tailwind-haskell", + "type": "github" + } + }, + "tailwind-haskell_5": { + "inputs": { + "flake-compat": "flake-compat_21", + "flake-utils": "flake-utils_31", + "nixpkgs": "nixpkgs_30" + }, + "locked": { + "lastModified": 1649519562, + "narHash": "sha256-IVZ4D7JkSCn0sjeTw5b0s2TTIU+g4hk78u1znXY4JjQ=", + "owner": "srid", + "repo": "tailwind-haskell", + "rev": "f5bfc15da3ee6e74a077579fb10269bb450fa5cb", + "type": "github" + }, + "original": { + "owner": "srid", + "ref": "master", + "repo": "tailwind-haskell", + "type": "github" + } + }, "th-extras": { "flake": false, "locked": { @@ -2367,6 +8353,196 @@ "rev": "787ed752c1e5d41b5903b74e171ed087de38bffa", "type": "github" } + }, + "th-extras_2": { + "flake": false, + "locked": { + "lastModified": 1641329261, + "narHash": "sha256-+K91xH/zew66ry0EAV5FaEIAHUZdJ3ngD9GzCJiUq7k=", + "owner": "mokus0", + "repo": "th-extras", + "rev": "787ed752c1e5d41b5903b74e171ed087de38bffa", + "type": "github" + }, + "original": { + "owner": "mokus0", + "repo": "th-extras", + "rev": "787ed752c1e5d41b5903b74e171ed087de38bffa", + "type": "github" + } + }, + "th-extras_3": { + "flake": false, + "locked": { + "lastModified": 1641329261, + "narHash": "sha256-+K91xH/zew66ry0EAV5FaEIAHUZdJ3ngD9GzCJiUq7k=", + "owner": "mokus0", + "repo": "th-extras", + "rev": "787ed752c1e5d41b5903b74e171ed087de38bffa", + "type": "github" + }, + "original": { + "owner": "mokus0", + "repo": "th-extras", + "rev": "787ed752c1e5d41b5903b74e171ed087de38bffa", + "type": "github" + } + }, + "th-extras_4": { + "flake": false, + "locked": { + "lastModified": 1641329261, + "narHash": "sha256-+K91xH/zew66ry0EAV5FaEIAHUZdJ3ngD9GzCJiUq7k=", + "owner": "mokus0", + "repo": "th-extras", + "rev": "787ed752c1e5d41b5903b74e171ed087de38bffa", + "type": "github" + }, + "original": { + "owner": "mokus0", + "repo": "th-extras", + "rev": "787ed752c1e5d41b5903b74e171ed087de38bffa", + "type": "github" + } + }, + "th-extras_5": { + "flake": false, + "locked": { + "lastModified": 1641329261, + "narHash": "sha256-+K91xH/zew66ry0EAV5FaEIAHUZdJ3ngD9GzCJiUq7k=", + "owner": "mokus0", + "repo": "th-extras", + "rev": "787ed752c1e5d41b5903b74e171ed087de38bffa", + "type": "github" + }, + "original": { + "owner": "mokus0", + "repo": "th-extras", + "rev": "787ed752c1e5d41b5903b74e171ed087de38bffa", + "type": "github" + } + }, + "th-extras_6": { + "flake": false, + "locked": { + "lastModified": 1641329261, + "narHash": "sha256-+K91xH/zew66ry0EAV5FaEIAHUZdJ3ngD9GzCJiUq7k=", + "owner": "mokus0", + "repo": "th-extras", + "rev": "787ed752c1e5d41b5903b74e171ed087de38bffa", + "type": "github" + }, + "original": { + "owner": "mokus0", + "repo": "th-extras", + "rev": "787ed752c1e5d41b5903b74e171ed087de38bffa", + "type": "github" + } + }, + "unionmount": { + "inputs": { + "flake-compat": "flake-compat_6", + "flake-utils": "flake-utils_7", + "nixpkgs": "nixpkgs_5" + }, + "locked": { + "lastModified": 1649012450, + "narHash": "sha256-m0qlPd3jxjyDEkd7cQKLX0GT9a00qnvygec9GCBZ1hc=", + "owner": "srid", + "repo": "unionmount", + "rev": "27584567d9182c12018f988db899593a896f86ff", + "type": "github" + }, + "original": { + "owner": "srid", + "ref": "master", + "repo": "unionmount", + "type": "github" + } + }, + "unionmount_2": { + "inputs": { + "flake-compat": "flake-compat_10", + "flake-utils": "flake-utils_14", + "nixpkgs": "nixpkgs_13" + }, + "locked": { + "lastModified": 1649012450, + "narHash": "sha256-m0qlPd3jxjyDEkd7cQKLX0GT9a00qnvygec9GCBZ1hc=", + "owner": "srid", + "repo": "unionmount", + "rev": "27584567d9182c12018f988db899593a896f86ff", + "type": "github" + }, + "original": { + "owner": "srid", + "ref": "master", + "repo": "unionmount", + "type": "github" + } + }, + "unionmount_3": { + "inputs": { + "flake-compat": "flake-compat_14", + "flake-utils": "flake-utils_20", + "nixpkgs": "nixpkgs_19" + }, + "locked": { + "lastModified": 1649012450, + "narHash": "sha256-m0qlPd3jxjyDEkd7cQKLX0GT9a00qnvygec9GCBZ1hc=", + "owner": "srid", + "repo": "unionmount", + "rev": "27584567d9182c12018f988db899593a896f86ff", + "type": "github" + }, + "original": { + "owner": "srid", + "ref": "master", + "repo": "unionmount", + "type": "github" + } + }, + "unionmount_4": { + "inputs": { + "flake-compat": "flake-compat_18", + "flake-utils": "flake-utils_26", + "nixpkgs": "nixpkgs_25" + }, + "locked": { + "lastModified": 1649012450, + "narHash": "sha256-m0qlPd3jxjyDEkd7cQKLX0GT9a00qnvygec9GCBZ1hc=", + "owner": "srid", + "repo": "unionmount", + "rev": "27584567d9182c12018f988db899593a896f86ff", + "type": "github" + }, + "original": { + "owner": "srid", + "ref": "master", + "repo": "unionmount", + "type": "github" + } + }, + "unionmount_5": { + "inputs": { + "flake-compat": "flake-compat_22", + "flake-utils": "flake-utils_32", + "nixpkgs": "nixpkgs_31" + }, + "locked": { + "lastModified": 1649012450, + "narHash": "sha256-m0qlPd3jxjyDEkd7cQKLX0GT9a00qnvygec9GCBZ1hc=", + "owner": "srid", + "repo": "unionmount", + "rev": "27584567d9182c12018f988db899593a896f86ff", + "type": "github" + }, + "original": { + "owner": "srid", + "ref": "master", + "repo": "unionmount", + "type": "github" + } } }, "root": "root", diff --git a/flake.nix b/flake.nix index 38677e3..553b271 100644 --- a/flake.nix +++ b/flake.nix @@ -7,13 +7,21 @@ # see https://github.com/NixOS/nix/issues/6013 inputs.nixpkgs-2111 = { url = "github:NixOS/nixpkgs/nixpkgs-21.11-darwin"; }; + # Plutarch and its friends inputs.plutarch.url = - "github:peter-mlabs/plutarch?rev=6ef18aacd02050fc07398e399cff5e8734c1045e"; + "github:liqwid-labs/plutarch/staging"; inputs.plutarch.inputs.emanote.follows = "plutarch/haskell-nix/nixpkgs-unstable"; inputs.plutarch.inputs.nixpkgs.follows = "plutarch/haskell-nix/nixpkgs-unstable"; - + + inputs.liqwid-plutarch-extra.url = + "git+ssh://git@github.com/Liqwid-Labs/liqwid-plutarch-extra?ref=main"; + inputs.plutarch-numeric.url = + "git+ssh://git@github.com/Liqwid-Labs/plutarch-numeric?ref=main"; + inputs.plutarch-safe-money.url = + "git+ssh://git@github.com/Liqwid-Labs/plutarch-safe-money?ref=main"; + # Follows jhodgdev's forks of apropos and apropos-tx, as these # are not constrained to `base ^>= 4.14`. Once these are merged # to their respective master branches, we should change the @@ -66,12 +74,21 @@ src = inputs.plutarch; subdirs = [ "." - "plutarch-test" "plutarch-extra" - "plutarch-numeric" - "plutarch-safemoney" ]; } + { + src = inputs.liqwid-plutarch-extra; + subdirs = [ "." ]; + } + { + src = inputs.plutarch-numeric; + subdirs = [ "." ]; + } + { + src = inputs.plutarch-safe-money; + subdirs = [ "." ]; + } { src = inputs.apropos-tx; subdirs = [ "." ]; @@ -82,9 +99,7 @@ } { src = inputs.purescript-bridge; - subdirs = [ - "." - ]; + subdirs = [ "." ]; } ]; modules = [ (plutarch.haskellModule system) ]; @@ -110,16 +125,21 @@ inherit (plutarch) tools; additional = ps: [ + # plutarch ps.plutarch + ps.liqwid-plutarch-extra + ps.plutarch-numeric + ps.plutarch-safe-money + + # purescript + ps.purescript-bridge + + # testing ps.tasty-quickcheck ps.apropos-tx ps.apropos - ps.plutarch-extra - ps.plutarch-numeric - ps.plutarch-safemoney - ps.plutarch-test ps.apropos - ps.purescript-bridge + ]; }; };