From 16d1efd17f654708339a5d72787f8c711041c062 Mon Sep 17 00:00:00 2001 From: John Ky Date: Sat, 4 Jun 2022 23:21:19 +1000 Subject: [PATCH 1/7] Update index state to 2022-06-01T00:00:00Z --- cabal.project | 4 +- cardano-api/test/Test/Cardano/Api/Json.hs | 2 + .../test/Test/Cardano/Api/KeysByron.hs | 2 + cardano-api/test/Test/Cardano/Api/Ledger.hs | 2 + cardano-api/test/Test/Cardano/Api/Metadata.hs | 3 + .../test/Test/Cardano/Api/Typed/Address.hs | 2 + .../test/Test/Cardano/Api/Typed/Bech32.hs | 3 + .../test/Test/Cardano/Api/Typed/CBOR.hs | 2 + .../test/Test/Cardano/Api/Typed/Envelope.hs | 2 + .../test/Test/Cardano/Api/Typed/JSON.hs | 1 + .../test/Test/Cardano/Api/Typed/Ord.hs | 2 + .../test/Test/Cardano/Api/Typed/RawBytes.hs | 2 + .../test/Test/Cardano/Api/Typed/Script.hs | 2 + .../test/Test/Cardano/Api/Typed/TxBody.hs | 2 + .../test/Test/Cardano/Api/Typed/Value.hs | 2 + cardano-node-chairman/test/Main.hs | 2 + cardano-testnet/test/Main.hs | 2 + cardano-testnet/test/Test/Util.hs | 2 + flake.lock | 3751 ++++++++++++++--- 19 files changed, 3117 insertions(+), 673 deletions(-) diff --git a/cabal.project b/cabal.project index adc5846baa7..d3ec488695e 100644 --- a/cabal.project +++ b/cabal.project @@ -1,5 +1,5 @@ -- run `nix flake lock --update-input hackageNix` after updating index-state. -index-state: 2022-02-18T00:00:00Z +index-state: 2022-06-01T00:00:00Z packages: cardano-api @@ -339,6 +339,8 @@ constraints: -- that dependency , network >= 3.1.1.0 , HSOpenSSL >= 0.11.7.2 + , algebraic-graphs < 0.7 + , protolude < 0.3.1 package snap-server flags: +openssl diff --git a/cardano-api/test/Test/Cardano/Api/Json.hs b/cardano-api/test/Test/Cardano/Api/Json.hs index 17ddf110e86..ab6fe41ab25 100644 --- a/cardano-api/test/Test/Cardano/Api/Json.hs +++ b/cardano-api/test/Test/Cardano/Api/Json.hs @@ -3,6 +3,8 @@ {-# LANGUAGE LambdaCase #-} {-# LANGUAGE TemplateHaskell #-} +{-# OPTIONS_GHC -Wno-deprecations #-} -- TODO Fix deprecations + module Test.Cardano.Api.Json ( tests ) where diff --git a/cardano-api/test/Test/Cardano/Api/KeysByron.hs b/cardano-api/test/Test/Cardano/Api/KeysByron.hs index be687dcc560..027a83adfa4 100644 --- a/cardano-api/test/Test/Cardano/Api/KeysByron.hs +++ b/cardano-api/test/Test/Cardano/Api/KeysByron.hs @@ -1,6 +1,8 @@ {-# LANGUAGE FlexibleContexts #-} {-# LANGUAGE TemplateHaskell #-} +{-# OPTIONS_GHC -Wno-deprecations #-} -- TODO Fix deprecations + module Test.Cardano.Api.KeysByron ( tests ) where diff --git a/cardano-api/test/Test/Cardano/Api/Ledger.hs b/cardano-api/test/Test/Cardano/Api/Ledger.hs index 9df7c93e177..7be69e04587 100644 --- a/cardano-api/test/Test/Cardano/Api/Ledger.hs +++ b/cardano-api/test/Test/Cardano/Api/Ledger.hs @@ -2,6 +2,8 @@ {-# LANGUAGE TemplateHaskell #-} {-# LANGUAGE TypeApplications #-} +{-# OPTIONS_GHC -Wno-deprecations #-} -- TODO Fix deprecations + module Test.Cardano.Api.Ledger ( tests ) where diff --git a/cardano-api/test/Test/Cardano/Api/Metadata.hs b/cardano-api/test/Test/Cardano/Api/Metadata.hs index 2d5aac90774..bbd368507de 100644 --- a/cardano-api/test/Test/Cardano/Api/Metadata.hs +++ b/cardano-api/test/Test/Cardano/Api/Metadata.hs @@ -1,5 +1,8 @@ {-# LANGUAGE OverloadedStrings #-} {-# LANGUAGE TemplateHaskell #-} + +{-# OPTIONS_GHC -Wno-deprecations #-} -- TODO Fix deprecations + module Test.Cardano.Api.Metadata ( tests , genTxMetadata diff --git a/cardano-api/test/Test/Cardano/Api/Typed/Address.hs b/cardano-api/test/Test/Cardano/Api/Typed/Address.hs index 37eef582aa0..d9d85d5fb73 100644 --- a/cardano-api/test/Test/Cardano/Api/Typed/Address.hs +++ b/cardano-api/test/Test/Cardano/Api/Typed/Address.hs @@ -1,6 +1,8 @@ {-# LANGUAGE FlexibleContexts #-} {-# LANGUAGE TemplateHaskell #-} +{-# OPTIONS_GHC -Wno-deprecations #-} -- TODO Fix deprecations + module Test.Cardano.Api.Typed.Address ( tests ) where diff --git a/cardano-api/test/Test/Cardano/Api/Typed/Bech32.hs b/cardano-api/test/Test/Cardano/Api/Typed/Bech32.hs index efc7596970d..7cda9676f36 100644 --- a/cardano-api/test/Test/Cardano/Api/Typed/Bech32.hs +++ b/cardano-api/test/Test/Cardano/Api/Typed/Bech32.hs @@ -1,4 +1,7 @@ {-# LANGUAGE TemplateHaskell #-} + +{-# OPTIONS_GHC -Wno-deprecations #-} -- TODO Fix deprecations + module Test.Cardano.Api.Typed.Bech32 ( tests ) where diff --git a/cardano-api/test/Test/Cardano/Api/Typed/CBOR.hs b/cardano-api/test/Test/Cardano/Api/Typed/CBOR.hs index 49a10b0b9aa..bbc3316498c 100644 --- a/cardano-api/test/Test/Cardano/Api/Typed/CBOR.hs +++ b/cardano-api/test/Test/Cardano/Api/Typed/CBOR.hs @@ -4,6 +4,8 @@ {-# LANGUAGE RankNTypes #-} {-# LANGUAGE TemplateHaskell #-} +{-# OPTIONS_GHC -Wno-deprecations #-} -- TODO Fix deprecations + module Test.Cardano.Api.Typed.CBOR ( tests ) where diff --git a/cardano-api/test/Test/Cardano/Api/Typed/Envelope.hs b/cardano-api/test/Test/Cardano/Api/Typed/Envelope.hs index 754a0ce7b91..8a0a127d0e4 100644 --- a/cardano-api/test/Test/Cardano/Api/Typed/Envelope.hs +++ b/cardano-api/test/Test/Cardano/Api/Typed/Envelope.hs @@ -2,6 +2,8 @@ {-# LANGUAGE StandaloneDeriving #-} {-# LANGUAGE TemplateHaskell #-} +{-# OPTIONS_GHC -Wno-deprecations #-} -- TODO Fix deprecations + module Test.Cardano.Api.Typed.Envelope ( tests ) where diff --git a/cardano-api/test/Test/Cardano/Api/Typed/JSON.hs b/cardano-api/test/Test/Cardano/Api/Typed/JSON.hs index 66c5aecf0ad..7d26ba0f776 100644 --- a/cardano-api/test/Test/Cardano/Api/Typed/JSON.hs +++ b/cardano-api/test/Test/Cardano/Api/Typed/JSON.hs @@ -6,6 +6,7 @@ {-# LANGUAGE TypeApplications #-} {-# LANGUAGE TypeFamilies #-} +{-# OPTIONS_GHC -Wno-deprecations #-} -- TODO Fix deprecations {-# OPTIONS_GHC -Wno-orphans #-} module Test.Cardano.Api.Typed.JSON diff --git a/cardano-api/test/Test/Cardano/Api/Typed/Ord.hs b/cardano-api/test/Test/Cardano/Api/Typed/Ord.hs index 8e00bb0a8da..4b38f5d87c3 100644 --- a/cardano-api/test/Test/Cardano/Api/Typed/Ord.hs +++ b/cardano-api/test/Test/Cardano/Api/Typed/Ord.hs @@ -1,5 +1,7 @@ {-# LANGUAGE TemplateHaskell #-} +{-# OPTIONS_GHC -Wno-deprecations #-} -- TODO Fix deprecations + module Test.Cardano.Api.Typed.Ord ( tests ) where diff --git a/cardano-api/test/Test/Cardano/Api/Typed/RawBytes.hs b/cardano-api/test/Test/Cardano/Api/Typed/RawBytes.hs index 0155e06ccc6..faae8ddc6e9 100644 --- a/cardano-api/test/Test/Cardano/Api/Typed/RawBytes.hs +++ b/cardano-api/test/Test/Cardano/Api/Typed/RawBytes.hs @@ -1,6 +1,8 @@ {-# LANGUAGE FlexibleContexts #-} {-# LANGUAGE TemplateHaskell #-} +{-# OPTIONS_GHC -Wno-deprecations #-} -- TODO Fix deprecations + module Test.Cardano.Api.Typed.RawBytes ( tests ) where diff --git a/cardano-api/test/Test/Cardano/Api/Typed/Script.hs b/cardano-api/test/Test/Cardano/Api/Typed/Script.hs index 3e9069a924a..2e30f0cfaf1 100644 --- a/cardano-api/test/Test/Cardano/Api/Typed/Script.hs +++ b/cardano-api/test/Test/Cardano/Api/Typed/Script.hs @@ -1,5 +1,7 @@ {-# LANGUAGE TemplateHaskell #-} +{-# OPTIONS_GHC -Wno-deprecations #-} -- TODO Fix deprecations + module Test.Cardano.Api.Typed.Script ( tests ) where diff --git a/cardano-api/test/Test/Cardano/Api/Typed/TxBody.hs b/cardano-api/test/Test/Cardano/Api/Typed/TxBody.hs index f17957f004f..9b5dfa887fa 100644 --- a/cardano-api/test/Test/Cardano/Api/Typed/TxBody.hs +++ b/cardano-api/test/Test/Cardano/Api/Typed/TxBody.hs @@ -1,6 +1,8 @@ {-# LANGUAGE LambdaCase #-} {-# LANGUAGE TemplateHaskell #-} +{-# OPTIONS_GHC -Wno-deprecations #-} + module Test.Cardano.Api.Typed.TxBody ( tests ) where diff --git a/cardano-api/test/Test/Cardano/Api/Typed/Value.hs b/cardano-api/test/Test/Cardano/Api/Typed/Value.hs index 6a6cbf0ab12..d88c9b23cb4 100644 --- a/cardano-api/test/Test/Cardano/Api/Typed/Value.hs +++ b/cardano-api/test/Test/Cardano/Api/Typed/Value.hs @@ -1,5 +1,7 @@ {-# LANGUAGE TemplateHaskell #-} +{-# OPTIONS_GHC -Wno-deprecations #-} -- TODO Fix deprecations + module Test.Cardano.Api.Typed.Value ( tests ) where diff --git a/cardano-node-chairman/test/Main.hs b/cardano-node-chairman/test/Main.hs index c62d28b1172..65c41b501d7 100644 --- a/cardano-node-chairman/test/Main.hs +++ b/cardano-node-chairman/test/Main.hs @@ -1,5 +1,7 @@ {-# LANGUAGE FlexibleInstances #-} +{-# OPTIONS_GHC -Wno-deprecations #-} -- TODO Fix deprecations + module Main ( main ) where diff --git a/cardano-testnet/test/Main.hs b/cardano-testnet/test/Main.hs index e72975a87cf..437d96fc49d 100644 --- a/cardano-testnet/test/Main.hs +++ b/cardano-testnet/test/Main.hs @@ -1,5 +1,7 @@ {-# LANGUAGE FlexibleInstances #-} +{-# OPTIONS_GHC -Wno-deprecations #-} -- TODO Fix deprecations + module Main ( main ) where diff --git a/cardano-testnet/test/Test/Util.hs b/cardano-testnet/test/Test/Util.hs index df7363568fa..762d6156c46 100644 --- a/cardano-testnet/test/Test/Util.hs +++ b/cardano-testnet/test/Test/Util.hs @@ -1,3 +1,5 @@ +{-# OPTIONS_GHC -Wno-deprecations #-} -- TODO Fix deprecations + module Test.Util ( ignoreOn , ignoreOnWindows diff --git a/flake.lock b/flake.lock index 4855ece8fb5..891870f8144 100644 --- a/flake.lock +++ b/flake.lock @@ -160,6 +160,22 @@ "type": "github" } }, + "HTTP_19": { + "flake": false, + "locked": { + "lastModified": 1451647621, + "narHash": "sha256-oHIyw3x0iKBexEo49YeUDV1k74ZtyYKGR2gNJXXRxts=", + "owner": "phadej", + "repo": "HTTP", + "rev": "9bc0996d412fef1787449d841277ef663ad9a915", + "type": "github" + }, + "original": { + "owner": "phadej", + "repo": "HTTP", + "type": "github" + } + }, "HTTP_2": { "flake": false, "locked": { @@ -176,6 +192,70 @@ "type": "github" } }, + "HTTP_20": { + "flake": false, + "locked": { + "lastModified": 1451647621, + "narHash": "sha256-oHIyw3x0iKBexEo49YeUDV1k74ZtyYKGR2gNJXXRxts=", + "owner": "phadej", + "repo": "HTTP", + "rev": "9bc0996d412fef1787449d841277ef663ad9a915", + "type": "github" + }, + "original": { + "owner": "phadej", + "repo": "HTTP", + "type": "github" + } + }, + "HTTP_21": { + "flake": false, + "locked": { + "lastModified": 1451647621, + "narHash": "sha256-oHIyw3x0iKBexEo49YeUDV1k74ZtyYKGR2gNJXXRxts=", + "owner": "phadej", + "repo": "HTTP", + "rev": "9bc0996d412fef1787449d841277ef663ad9a915", + "type": "github" + }, + "original": { + "owner": "phadej", + "repo": "HTTP", + "type": "github" + } + }, + "HTTP_22": { + "flake": false, + "locked": { + "lastModified": 1451647621, + "narHash": "sha256-oHIyw3x0iKBexEo49YeUDV1k74ZtyYKGR2gNJXXRxts=", + "owner": "phadej", + "repo": "HTTP", + "rev": "9bc0996d412fef1787449d841277ef663ad9a915", + "type": "github" + }, + "original": { + "owner": "phadej", + "repo": "HTTP", + "type": "github" + } + }, + "HTTP_23": { + "flake": false, + "locked": { + "lastModified": 1451647621, + "narHash": "sha256-oHIyw3x0iKBexEo49YeUDV1k74ZtyYKGR2gNJXXRxts=", + "owner": "phadej", + "repo": "HTTP", + "rev": "9bc0996d412fef1787449d841277ef663ad9a915", + "type": "github" + }, + "original": { + "owner": "phadej", + "repo": "HTTP", + "type": "github" + } + }, "HTTP_3": { "flake": false, "locked": { @@ -292,10 +372,10 @@ "flake": false, "locked": { "lastModified": 1603716527, - "narHash": "sha256-X0TFfdD4KZpwl0Zr6x+PLxUt/VyKQfX7ylXHdmZIL+w=", + "narHash": "sha256-sDbrmur9Zfp4mPKohCD8IDZfXJ0Tjxpmr2R+kg5PpSY=", "owner": "haskell", "repo": "cabal", - "rev": "48bf10787e27364730dd37a42b603cee8d6af7ee", + "rev": "94aaa8e4720081f9c75497e2735b90f6a819b08e", "type": "github" }, "original": { @@ -458,6 +538,23 @@ "type": "github" } }, + "cabal-32_19": { + "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-32_2": { "flake": false, "locked": { @@ -475,6 +572,74 @@ "type": "github" } }, + "cabal-32_20": { + "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-32_21": { + "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-32_22": { + "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-32_23": { + "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-32_3": { "flake": false, "locked": { @@ -496,10 +661,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": { @@ -513,10 +678,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": { @@ -597,11 +762,11 @@ "cabal-34": { "flake": false, "locked": { - "lastModified": 1640353650, - "narHash": "sha256-N1t6M3/wqj90AEdRkeC8i923gQYUpzSr8b40qVOZ1Rk=", + "lastModified": 1622475795, + "narHash": "sha256-chwTL304Cav+7p38d9mcb+egABWmxo2Aq+xgVBgEb/U=", "owner": "haskell", "repo": "cabal", - "rev": "942639c18c0cd8ec53e0a6f8d120091af35312cd", + "rev": "b086c1995cdd616fc8d91f46a21e905cc50a1049", "type": "github" }, "original": { @@ -764,14 +929,14 @@ "type": "github" } }, - "cabal-34_2": { + "cabal-34_19": { "flake": false, "locked": { - "lastModified": 1640353650, - "narHash": "sha256-N1t6M3/wqj90AEdRkeC8i923gQYUpzSr8b40qVOZ1Rk=", + "lastModified": 1622475795, + "narHash": "sha256-chwTL304Cav+7p38d9mcb+egABWmxo2Aq+xgVBgEb/U=", "owner": "haskell", "repo": "cabal", - "rev": "942639c18c0cd8ec53e0a6f8d120091af35312cd", + "rev": "b086c1995cdd616fc8d91f46a21e905cc50a1049", "type": "github" }, "original": { @@ -781,7 +946,7 @@ "type": "github" } }, - "cabal-34_3": { + "cabal-34_2": { "flake": false, "locked": { "lastModified": 1640353650, @@ -798,7 +963,7 @@ "type": "github" } }, - "cabal-34_4": { + "cabal-34_20": { "flake": false, "locked": { "lastModified": 1622475795, @@ -815,7 +980,7 @@ "type": "github" } }, - "cabal-34_5": { + "cabal-34_21": { "flake": false, "locked": { "lastModified": 1622475795, @@ -832,7 +997,7 @@ "type": "github" } }, - "cabal-34_6": { + "cabal-34_22": { "flake": false, "locked": { "lastModified": 1622475795, @@ -849,7 +1014,7 @@ "type": "github" } }, - "cabal-34_7": { + "cabal-34_23": { "flake": false, "locked": { "lastModified": 1622475795, @@ -866,14 +1031,14 @@ "type": "github" } }, - "cabal-34_8": { + "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": { @@ -883,14 +1048,14 @@ "type": "github" } }, - "cabal-34_9": { + "cabal-34_4": { "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": { @@ -900,92 +1065,92 @@ "type": "github" } }, - "cabal-36": { + "cabal-34_5": { "flake": false, "locked": { - "lastModified": 1641652457, - "narHash": "sha256-BlFPKP4C4HRUJeAbdembX1Rms1LD380q9s0qVDeoAak=", + "lastModified": 1640353650, + "narHash": "sha256-N1t6M3/wqj90AEdRkeC8i923gQYUpzSr8b40qVOZ1Rk=", "owner": "haskell", "repo": "cabal", - "rev": "f27667f8ec360c475027dcaee0138c937477b070", + "rev": "942639c18c0cd8ec53e0a6f8d120091af35312cd", "type": "github" }, "original": { "owner": "haskell", - "ref": "3.6", + "ref": "3.4", "repo": "cabal", "type": "github" } }, - "cabal-36_10": { + "cabal-34_6": { "flake": false, "locked": { - "lastModified": 1640163203, - "narHash": "sha256-TwDWP2CffT0j40W6zr0J1Qbu+oh3nsF1lUx9446qxZM=", + "lastModified": 1622475795, + "narHash": "sha256-chwTL304Cav+7p38d9mcb+egABWmxo2Aq+xgVBgEb/U=", "owner": "haskell", "repo": "cabal", - "rev": "ecf418050c1821f25e2e218f1be94c31e0465df1", + "rev": "b086c1995cdd616fc8d91f46a21e905cc50a1049", "type": "github" }, "original": { "owner": "haskell", - "ref": "3.6", + "ref": "3.4", "repo": "cabal", "type": "github" } }, - "cabal-36_11": { + "cabal-34_7": { "flake": false, "locked": { - "lastModified": 1640163203, - "narHash": "sha256-TwDWP2CffT0j40W6zr0J1Qbu+oh3nsF1lUx9446qxZM=", + "lastModified": 1622475795, + "narHash": "sha256-chwTL304Cav+7p38d9mcb+egABWmxo2Aq+xgVBgEb/U=", "owner": "haskell", "repo": "cabal", - "rev": "ecf418050c1821f25e2e218f1be94c31e0465df1", + "rev": "b086c1995cdd616fc8d91f46a21e905cc50a1049", "type": "github" }, "original": { "owner": "haskell", - "ref": "3.6", + "ref": "3.4", "repo": "cabal", "type": "github" } }, - "cabal-36_12": { + "cabal-34_8": { "flake": false, "locked": { - "lastModified": 1640163203, - "narHash": "sha256-TwDWP2CffT0j40W6zr0J1Qbu+oh3nsF1lUx9446qxZM=", + "lastModified": 1622475795, + "narHash": "sha256-chwTL304Cav+7p38d9mcb+egABWmxo2Aq+xgVBgEb/U=", "owner": "haskell", "repo": "cabal", - "rev": "ecf418050c1821f25e2e218f1be94c31e0465df1", + "rev": "b086c1995cdd616fc8d91f46a21e905cc50a1049", "type": "github" }, "original": { "owner": "haskell", - "ref": "3.6", + "ref": "3.4", "repo": "cabal", "type": "github" } }, - "cabal-36_13": { + "cabal-34_9": { "flake": false, "locked": { - "lastModified": 1640163203, - "narHash": "sha256-TwDWP2CffT0j40W6zr0J1Qbu+oh3nsF1lUx9446qxZM=", + "lastModified": 1622475795, + "narHash": "sha256-chwTL304Cav+7p38d9mcb+egABWmxo2Aq+xgVBgEb/U=", "owner": "haskell", "repo": "cabal", - "rev": "ecf418050c1821f25e2e218f1be94c31e0465df1", + "rev": "b086c1995cdd616fc8d91f46a21e905cc50a1049", "type": "github" }, "original": { "owner": "haskell", - "ref": "3.6", + "ref": "3.4", "repo": "cabal", "type": "github" } }, - "cabal-36_14": { + "cabal-36": { "flake": false, "locked": { "lastModified": 1640163203, @@ -1002,7 +1167,160 @@ "type": "github" } }, - "cabal-36_2": { + "cabal-36_10": { + "flake": false, + "locked": { + "lastModified": 1640163203, + "narHash": "sha256-TwDWP2CffT0j40W6zr0J1Qbu+oh3nsF1lUx9446qxZM=", + "owner": "haskell", + "repo": "cabal", + "rev": "ecf418050c1821f25e2e218f1be94c31e0465df1", + "type": "github" + }, + "original": { + "owner": "haskell", + "ref": "3.6", + "repo": "cabal", + "type": "github" + } + }, + "cabal-36_11": { + "flake": false, + "locked": { + "lastModified": 1640163203, + "narHash": "sha256-TwDWP2CffT0j40W6zr0J1Qbu+oh3nsF1lUx9446qxZM=", + "owner": "haskell", + "repo": "cabal", + "rev": "ecf418050c1821f25e2e218f1be94c31e0465df1", + "type": "github" + }, + "original": { + "owner": "haskell", + "ref": "3.6", + "repo": "cabal", + "type": "github" + } + }, + "cabal-36_12": { + "flake": false, + "locked": { + "lastModified": 1640163203, + "narHash": "sha256-TwDWP2CffT0j40W6zr0J1Qbu+oh3nsF1lUx9446qxZM=", + "owner": "haskell", + "repo": "cabal", + "rev": "ecf418050c1821f25e2e218f1be94c31e0465df1", + "type": "github" + }, + "original": { + "owner": "haskell", + "ref": "3.6", + "repo": "cabal", + "type": "github" + } + }, + "cabal-36_13": { + "flake": false, + "locked": { + "lastModified": 1640163203, + "narHash": "sha256-TwDWP2CffT0j40W6zr0J1Qbu+oh3nsF1lUx9446qxZM=", + "owner": "haskell", + "repo": "cabal", + "rev": "ecf418050c1821f25e2e218f1be94c31e0465df1", + "type": "github" + }, + "original": { + "owner": "haskell", + "ref": "3.6", + "repo": "cabal", + "type": "github" + } + }, + "cabal-36_14": { + "flake": false, + "locked": { + "lastModified": 1640163203, + "narHash": "sha256-TwDWP2CffT0j40W6zr0J1Qbu+oh3nsF1lUx9446qxZM=", + "owner": "haskell", + "repo": "cabal", + "rev": "ecf418050c1821f25e2e218f1be94c31e0465df1", + "type": "github" + }, + "original": { + "owner": "haskell", + "ref": "3.6", + "repo": "cabal", + "type": "github" + } + }, + "cabal-36_15": { + "flake": false, + "locked": { + "lastModified": 1640163203, + "narHash": "sha256-TwDWP2CffT0j40W6zr0J1Qbu+oh3nsF1lUx9446qxZM=", + "owner": "haskell", + "repo": "cabal", + "rev": "ecf418050c1821f25e2e218f1be94c31e0465df1", + "type": "github" + }, + "original": { + "owner": "haskell", + "ref": "3.6", + "repo": "cabal", + "type": "github" + } + }, + "cabal-36_16": { + "flake": false, + "locked": { + "lastModified": 1640163203, + "narHash": "sha256-TwDWP2CffT0j40W6zr0J1Qbu+oh3nsF1lUx9446qxZM=", + "owner": "haskell", + "repo": "cabal", + "rev": "ecf418050c1821f25e2e218f1be94c31e0465df1", + "type": "github" + }, + "original": { + "owner": "haskell", + "ref": "3.6", + "repo": "cabal", + "type": "github" + } + }, + "cabal-36_17": { + "flake": false, + "locked": { + "lastModified": 1640163203, + "narHash": "sha256-TwDWP2CffT0j40W6zr0J1Qbu+oh3nsF1lUx9446qxZM=", + "owner": "haskell", + "repo": "cabal", + "rev": "ecf418050c1821f25e2e218f1be94c31e0465df1", + "type": "github" + }, + "original": { + "owner": "haskell", + "ref": "3.6", + "repo": "cabal", + "type": "github" + } + }, + "cabal-36_18": { + "flake": false, + "locked": { + "lastModified": 1640163203, + "narHash": "sha256-TwDWP2CffT0j40W6zr0J1Qbu+oh3nsF1lUx9446qxZM=", + "owner": "haskell", + "repo": "cabal", + "rev": "ecf418050c1821f25e2e218f1be94c31e0465df1", + "type": "github" + }, + "original": { + "owner": "haskell", + "ref": "3.6", + "repo": "cabal", + "type": "github" + } + }, + "cabal-36_2": { "flake": false, "locked": { "lastModified": 1641652457, @@ -1039,11 +1357,11 @@ "cabal-36_4": { "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": { @@ -1056,11 +1374,11 @@ "cabal-36_5": { "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": { @@ -1159,7 +1477,7 @@ }, "cardano-mainnet-mirror_10": { "inputs": { - "nixpkgs": "nixpkgs_13" + "nixpkgs": "nixpkgs_14" }, "locked": { "lastModified": 1642701714, @@ -1178,7 +1496,7 @@ }, "cardano-mainnet-mirror_11": { "inputs": { - "nixpkgs": "nixpkgs_14" + "nixpkgs": "nixpkgs_15" }, "locked": { "lastModified": 1642701714, @@ -1197,7 +1515,64 @@ }, "cardano-mainnet-mirror_12": { "inputs": { - "nixpkgs": "nixpkgs_15" + "nixpkgs": "nixpkgs_16" + }, + "locked": { + "lastModified": 1642701714, + "narHash": "sha256-SR3luE+ePX6U193EKE/KSEuVzWAW0YsyPYDC4hOvALs=", + "owner": "input-output-hk", + "repo": "cardano-mainnet-mirror", + "rev": "819488be9eabbba6aaa7c931559bc584d8071e3d", + "type": "github" + }, + "original": { + "owner": "input-output-hk", + "ref": "nix", + "repo": "cardano-mainnet-mirror", + "type": "github" + } + }, + "cardano-mainnet-mirror_13": { + "inputs": { + "nixpkgs": "nixpkgs_17" + }, + "locked": { + "lastModified": 1642701714, + "narHash": "sha256-SR3luE+ePX6U193EKE/KSEuVzWAW0YsyPYDC4hOvALs=", + "owner": "input-output-hk", + "repo": "cardano-mainnet-mirror", + "rev": "819488be9eabbba6aaa7c931559bc584d8071e3d", + "type": "github" + }, + "original": { + "owner": "input-output-hk", + "ref": "nix", + "repo": "cardano-mainnet-mirror", + "type": "github" + } + }, + "cardano-mainnet-mirror_14": { + "inputs": { + "nixpkgs": "nixpkgs_18" + }, + "locked": { + "lastModified": 1642701714, + "narHash": "sha256-SR3luE+ePX6U193EKE/KSEuVzWAW0YsyPYDC4hOvALs=", + "owner": "input-output-hk", + "repo": "cardano-mainnet-mirror", + "rev": "819488be9eabbba6aaa7c931559bc584d8071e3d", + "type": "github" + }, + "original": { + "owner": "input-output-hk", + "ref": "nix", + "repo": "cardano-mainnet-mirror", + "type": "github" + } + }, + "cardano-mainnet-mirror_15": { + "inputs": { + "nixpkgs": "nixpkgs_19" }, "locked": { "lastModified": 1642701714, @@ -1216,7 +1591,7 @@ }, "cardano-mainnet-mirror_2": { "inputs": { - "nixpkgs": "nixpkgs_4" + "nixpkgs": "nixpkgs_3" }, "locked": { "lastModified": 1642701714, @@ -1254,7 +1629,7 @@ }, "cardano-mainnet-mirror_4": { "inputs": { - "nixpkgs": "nixpkgs_7" + "nixpkgs": "nixpkgs_8" }, "locked": { "lastModified": 1642701714, @@ -1273,7 +1648,7 @@ }, "cardano-mainnet-mirror_5": { "inputs": { - "nixpkgs": "nixpkgs_8" + "nixpkgs": "nixpkgs_9" }, "locked": { "lastModified": 1642701714, @@ -1292,7 +1667,7 @@ }, "cardano-mainnet-mirror_6": { "inputs": { - "nixpkgs": "nixpkgs_9" + "nixpkgs": "nixpkgs_10" }, "locked": { "lastModified": 1642701714, @@ -1311,7 +1686,7 @@ }, "cardano-mainnet-mirror_7": { "inputs": { - "nixpkgs": "nixpkgs_10" + "nixpkgs": "nixpkgs_11" }, "locked": { "lastModified": 1642701714, @@ -1330,7 +1705,7 @@ }, "cardano-mainnet-mirror_8": { "inputs": { - "nixpkgs": "nixpkgs_11" + "nixpkgs": "nixpkgs_12" }, "locked": { "lastModified": 1642701714, @@ -1349,7 +1724,7 @@ }, "cardano-mainnet-mirror_9": { "inputs": { - "nixpkgs": "nixpkgs_12" + "nixpkgs": "nixpkgs_13" }, "locked": { "lastModified": 1642701714, @@ -1368,11 +1743,12 @@ }, "cardano-node-snapshot": { "inputs": { - "customConfig": "customConfig_6", - "haskellNix": "haskellNix_6", - "iohkNix": "iohkNix_6", - "membench": "membench_4", + "customConfig": "customConfig_8", + "haskellNix": "haskellNix_8", + "iohkNix": "iohkNix_8", + "membench": "membench_5", "nixpkgs": [ + "node-measured", "node-measured", "node-measured", "membench", @@ -1381,7 +1757,7 @@ "nixpkgs-2105" ], "plutus-example": "plutus-example", - "utils": "utils_5" + "utils": "utils_6" }, "locked": { "lastModified": 1645120669, @@ -1400,11 +1776,12 @@ }, "cardano-node-snapshot_2": { "inputs": { - "customConfig": "customConfig_7", - "haskellNix": "haskellNix_7", - "iohkNix": "iohkNix_7", - "membench": "membench_5", + "customConfig": "customConfig_9", + "haskellNix": "haskellNix_9", + "iohkNix": "iohkNix_9", + "membench": "membench_6", "nixpkgs": [ + "node-measured", "node-measured", "node-measured", "membench", @@ -1414,7 +1791,7 @@ "haskellNix", "nixpkgs-2105" ], - "utils": "utils_3" + "utils": "utils_4" }, "locked": { "lastModified": 1644954571, @@ -1433,12 +1810,13 @@ }, "cardano-node-snapshot_3": { "inputs": { - "customConfig": "customConfig_10", - "haskellNix": "haskellNix_10", - "iohkNix": "iohkNix_10", - "membench": "membench_7", - "nixpkgs": [ - "node-measured", + "customConfig": "customConfig_12", + "haskellNix": "haskellNix_12", + "iohkNix": "iohkNix_12", + "membench": "membench_8", + "nixpkgs": [ + "node-measured", + "node-measured", "node-process", "membench", "cardano-node-snapshot", @@ -1446,7 +1824,7 @@ "nixpkgs-2105" ], "plutus-example": "plutus-example_3", - "utils": "utils_9" + "utils": "utils_10" }, "locked": { "lastModified": 1645120669, @@ -1465,11 +1843,12 @@ }, "cardano-node-snapshot_4": { "inputs": { - "customConfig": "customConfig_11", - "haskellNix": "haskellNix_11", - "iohkNix": "iohkNix_11", - "membench": "membench_8", + "customConfig": "customConfig_13", + "haskellNix": "haskellNix_13", + "iohkNix": "iohkNix_13", + "membench": "membench_9", "nixpkgs": [ + "node-measured", "node-measured", "node-process", "membench", @@ -1479,7 +1858,7 @@ "haskellNix", "nixpkgs-2105" ], - "utils": "utils_7" + "utils": "utils_8" }, "locked": { "lastModified": 1644954571, @@ -1498,11 +1877,12 @@ }, "cardano-node-snapshot_5": { "inputs": { - "customConfig": "customConfig_14", - "haskellNix": "haskellNix_14", - "iohkNix": "iohkNix_14", - "membench": "membench_10", + "customConfig": "customConfig_16", + "haskellNix": "haskellNix_16", + "iohkNix": "iohkNix_16", + "membench": "membench_11", "nixpkgs": [ + "node-measured", "node-measured", "node-snapshot", "membench", @@ -1510,7 +1890,7 @@ "haskellNix", "nixpkgs-2105" ], - "utils": "utils_11" + "utils": "utils_12" }, "locked": { "lastModified": 1644954571, @@ -1529,18 +1909,49 @@ }, "cardano-node-snapshot_6": { "inputs": { - "customConfig": "customConfig_17", - "haskellNix": "haskellNix_17", - "iohkNix": "iohkNix_17", - "membench": "membench_12", + "customConfig": "customConfig_19", + "haskellNix": "haskellNix_19", + "iohkNix": "iohkNix_19", + "membench": "membench_13", "nixpkgs": [ + "node-measured", "node-snapshot", "membench", "cardano-node-snapshot", "haskellNix", "nixpkgs-2105" ], - "utils": "utils_15" + "utils": "utils_16" + }, + "locked": { + "lastModified": 1644954571, + "narHash": "sha256-c6MM1mQoS/AnTIrwaRmITK4L4i9lLNtkjOUHiseBtUs=", + "owner": "input-output-hk", + "repo": "cardano-node", + "rev": "30d62b86e7b98da28ef8ad9412e4e00a1ba1231d", + "type": "github" + }, + "original": { + "owner": "input-output-hk", + "repo": "cardano-node", + "rev": "30d62b86e7b98da28ef8ad9412e4e00a1ba1231d", + "type": "github" + } + }, + "cardano-node-snapshot_7": { + "inputs": { + "customConfig": "customConfig_22", + "haskellNix": "haskellNix_22", + "iohkNix": "iohkNix_22", + "membench": "membench_15", + "nixpkgs": [ + "node-snapshot", + "membench", + "cardano-node-snapshot", + "haskellNix", + "nixpkgs-2105" + ], + "utils": "utils_20" }, "locked": { "lastModified": 1644954571, @@ -1664,6 +2075,45 @@ } }, "cardano-node-workbench_5": { + "inputs": { + "cardano-node-workbench": "cardano-node-workbench_6", + "customConfig": "customConfig_5", + "flake-compat": "flake-compat_5", + "haskellNix": "haskellNix_5", + "hostNixpkgs": [ + "node-measured", + "node-measured", + "cardano-node-workbench", + "nixpkgs" + ], + "iohkNix": "iohkNix_5", + "membench": "membench_3", + "nixpkgs": [ + "node-measured", + "node-measured", + "cardano-node-workbench", + "haskellNix", + "nixpkgs-2105" + ], + "plutus-apps": "plutus-apps_3", + "utils": "utils_3" + }, + "locked": { + "lastModified": 1647983004, + "narHash": "sha256-29kzatjbzREnXoT6Yh89OC82C5qI8eCVZhm4OeSjrgw=", + "owner": "input-output-hk", + "repo": "cardano-node", + "rev": "ed9932c52aaa535b71f72a5b4cc0cecb3344a5a3", + "type": "github" + }, + "original": { + "owner": "input-output-hk", + "repo": "cardano-node", + "rev": "ed9932c52aaa535b71f72a5b4cc0cecb3344a5a3", + "type": "github" + } + }, + "cardano-node-workbench_6": { "flake": false, "locked": { "lastModified": 1647605822, @@ -1680,7 +2130,24 @@ "type": "github" } }, - "cardano-node-workbench_6": { + "cardano-node-workbench_7": { + "flake": false, + "locked": { + "lastModified": 1647605822, + "narHash": "sha256-bhgSsshidZ7dOPpXdG88pIqhy5VgXWi3LXtR78oDiEo=", + "owner": "input-output-hk", + "repo": "cardano-node", + "rev": "44ac30fb04d02d41ba005ca5228db9b5e9b887d2", + "type": "github" + }, + "original": { + "owner": "input-output-hk", + "repo": "cardano-node", + "rev": "44ac30fb04d02d41ba005ca5228db9b5e9b887d2", + "type": "github" + } + }, + "cardano-node-workbench_8": { "flake": false, "locked": { "lastModified": 1647605822, @@ -1857,6 +2324,22 @@ "type": "github" } }, + "cardano-shell_19": { + "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_2": { "flake": false, "locked": { @@ -1873,6 +2356,70 @@ "type": "github" } }, + "cardano-shell_20": { + "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_21": { + "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_22": { + "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_23": { + "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_3": { "flake": false, "locked": { @@ -2135,7 +2682,7 @@ "type": "github" } }, - "customConfig_2": { + "customConfig_19": { "locked": { "lastModified": 1630400035, "narHash": "sha256-MWaVOCzuFwp09wZIW9iHq5wWen5C69I940N1swZLEQ0=", @@ -2150,7 +2697,7 @@ "type": "github" } }, - "customConfig_3": { + "customConfig_2": { "locked": { "lastModified": 1630400035, "narHash": "sha256-MWaVOCzuFwp09wZIW9iHq5wWen5C69I940N1swZLEQ0=", @@ -2165,7 +2712,7 @@ "type": "github" } }, - "customConfig_4": { + "customConfig_20": { "locked": { "lastModified": 1630400035, "narHash": "sha256-MWaVOCzuFwp09wZIW9iHq5wWen5C69I940N1swZLEQ0=", @@ -2180,7 +2727,7 @@ "type": "github" } }, - "customConfig_5": { + "customConfig_21": { "locked": { "lastModified": 1630400035, "narHash": "sha256-MWaVOCzuFwp09wZIW9iHq5wWen5C69I940N1swZLEQ0=", @@ -2195,7 +2742,7 @@ "type": "github" } }, - "customConfig_6": { + "customConfig_22": { "locked": { "lastModified": 1630400035, "narHash": "sha256-MWaVOCzuFwp09wZIW9iHq5wWen5C69I940N1swZLEQ0=", @@ -2210,7 +2757,7 @@ "type": "github" } }, - "customConfig_7": { + "customConfig_23": { "locked": { "lastModified": 1630400035, "narHash": "sha256-MWaVOCzuFwp09wZIW9iHq5wWen5C69I940N1swZLEQ0=", @@ -2225,7 +2772,7 @@ "type": "github" } }, - "customConfig_8": { + "customConfig_3": { "locked": { "lastModified": 1630400035, "narHash": "sha256-MWaVOCzuFwp09wZIW9iHq5wWen5C69I940N1swZLEQ0=", @@ -2240,7 +2787,7 @@ "type": "github" } }, - "customConfig_9": { + "customConfig_4": { "locked": { "lastModified": 1630400035, "narHash": "sha256-MWaVOCzuFwp09wZIW9iHq5wWen5C69I940N1swZLEQ0=", @@ -2255,66 +2802,141 @@ "type": "github" } }, - "flake-compat": { - "flake": false, + "customConfig_5": { "locked": { - "lastModified": 1647532380, - "narHash": "sha256-wswAxyO8AJTH7d5oU8VK82yBCpqwA+p6kLgpb1f1PAY=", + "lastModified": 1630400035, + "narHash": "sha256-MWaVOCzuFwp09wZIW9iHq5wWen5C69I940N1swZLEQ0=", "owner": "input-output-hk", - "repo": "flake-compat", - "rev": "7da118186435255a30b5ffeabba9629c344c0bec", + "repo": "empty-flake", + "rev": "2040a05b67bf9a669ce17eca56beb14b4206a99a", "type": "github" }, "original": { "owner": "input-output-hk", - "ref": "fixes", - "repo": "flake-compat", + "repo": "empty-flake", "type": "github" } }, - "flake-compat_2": { - "flake": false, + "customConfig_6": { "locked": { - "lastModified": 1647532380, - "narHash": "sha256-wswAxyO8AJTH7d5oU8VK82yBCpqwA+p6kLgpb1f1PAY=", + "lastModified": 1630400035, + "narHash": "sha256-MWaVOCzuFwp09wZIW9iHq5wWen5C69I940N1swZLEQ0=", "owner": "input-output-hk", - "repo": "flake-compat", - "rev": "7da118186435255a30b5ffeabba9629c344c0bec", + "repo": "empty-flake", + "rev": "2040a05b67bf9a669ce17eca56beb14b4206a99a", "type": "github" }, "original": { "owner": "input-output-hk", - "ref": "fixes", - "repo": "flake-compat", + "repo": "empty-flake", "type": "github" } }, - "flake-compat_3": { - "flake": false, + "customConfig_7": { "locked": { - "lastModified": 1647532380, - "narHash": "sha256-wswAxyO8AJTH7d5oU8VK82yBCpqwA+p6kLgpb1f1PAY=", + "lastModified": 1630400035, + "narHash": "sha256-MWaVOCzuFwp09wZIW9iHq5wWen5C69I940N1swZLEQ0=", "owner": "input-output-hk", - "repo": "flake-compat", - "rev": "7da118186435255a30b5ffeabba9629c344c0bec", + "repo": "empty-flake", + "rev": "2040a05b67bf9a669ce17eca56beb14b4206a99a", "type": "github" }, "original": { "owner": "input-output-hk", - "ref": "fixes", - "repo": "flake-compat", + "repo": "empty-flake", "type": "github" } }, - "flake-compat_4": { - "flake": false, + "customConfig_8": { "locked": { - "lastModified": 1638445031, - "narHash": "sha256-dtIZLlf2tfYeLvpZa/jFxP5HvfoXAzr7X76yn6FQAdM=", + "lastModified": 1630400035, + "narHash": "sha256-MWaVOCzuFwp09wZIW9iHq5wWen5C69I940N1swZLEQ0=", "owner": "input-output-hk", - "repo": "flake-compat", - "rev": "20f79e3976b76a37090fbeec7b49dc08dac96b8e", - "type": "github" + "repo": "empty-flake", + "rev": "2040a05b67bf9a669ce17eca56beb14b4206a99a", + "type": "github" + }, + "original": { + "owner": "input-output-hk", + "repo": "empty-flake", + "type": "github" + } + }, + "customConfig_9": { + "locked": { + "lastModified": 1630400035, + "narHash": "sha256-MWaVOCzuFwp09wZIW9iHq5wWen5C69I940N1swZLEQ0=", + "owner": "input-output-hk", + "repo": "empty-flake", + "rev": "2040a05b67bf9a669ce17eca56beb14b4206a99a", + "type": "github" + }, + "original": { + "owner": "input-output-hk", + "repo": "empty-flake", + "type": "github" + } + }, + "flake-compat": { + "flake": false, + "locked": { + "lastModified": 1647532380, + "narHash": "sha256-wswAxyO8AJTH7d5oU8VK82yBCpqwA+p6kLgpb1f1PAY=", + "owner": "input-output-hk", + "repo": "flake-compat", + "rev": "7da118186435255a30b5ffeabba9629c344c0bec", + "type": "github" + }, + "original": { + "owner": "input-output-hk", + "ref": "fixes", + "repo": "flake-compat", + "type": "github" + } + }, + "flake-compat_2": { + "flake": false, + "locked": { + "lastModified": 1647532380, + "narHash": "sha256-wswAxyO8AJTH7d5oU8VK82yBCpqwA+p6kLgpb1f1PAY=", + "owner": "input-output-hk", + "repo": "flake-compat", + "rev": "7da118186435255a30b5ffeabba9629c344c0bec", + "type": "github" + }, + "original": { + "owner": "input-output-hk", + "ref": "fixes", + "repo": "flake-compat", + "type": "github" + } + }, + "flake-compat_3": { + "flake": false, + "locked": { + "lastModified": 1647532380, + "narHash": "sha256-wswAxyO8AJTH7d5oU8VK82yBCpqwA+p6kLgpb1f1PAY=", + "owner": "input-output-hk", + "repo": "flake-compat", + "rev": "7da118186435255a30b5ffeabba9629c344c0bec", + "type": "github" + }, + "original": { + "owner": "input-output-hk", + "ref": "fixes", + "repo": "flake-compat", + "type": "github" + } + }, + "flake-compat_4": { + "flake": false, + "locked": { + "lastModified": 1647532380, + "narHash": "sha256-wswAxyO8AJTH7d5oU8VK82yBCpqwA+p6kLgpb1f1PAY=", + "owner": "input-output-hk", + "repo": "flake-compat", + "rev": "7da118186435255a30b5ffeabba9629c344c0bec", + "type": "github" }, "original": { "owner": "input-output-hk", @@ -2324,6 +2946,23 @@ } }, "flake-compat_5": { + "flake": false, + "locked": { + "lastModified": 1647532380, + "narHash": "sha256-wswAxyO8AJTH7d5oU8VK82yBCpqwA+p6kLgpb1f1PAY=", + "owner": "input-output-hk", + "repo": "flake-compat", + "rev": "7da118186435255a30b5ffeabba9629c344c0bec", + "type": "github" + }, + "original": { + "owner": "input-output-hk", + "ref": "fixes", + "repo": "flake-compat", + "type": "github" + } + }, + "flake-compat_6": { "flake": false, "locked": { "lastModified": 1638445031, @@ -2340,7 +2979,24 @@ "type": "github" } }, - "flake-compat_6": { + "flake-compat_7": { + "flake": false, + "locked": { + "lastModified": 1638445031, + "narHash": "sha256-dtIZLlf2tfYeLvpZa/jFxP5HvfoXAzr7X76yn6FQAdM=", + "owner": "input-output-hk", + "repo": "flake-compat", + "rev": "20f79e3976b76a37090fbeec7b49dc08dac96b8e", + "type": "github" + }, + "original": { + "owner": "input-output-hk", + "ref": "fixes", + "repo": "flake-compat", + "type": "github" + } + }, + "flake-compat_8": { "flake": false, "locked": { "lastModified": 1638445031, @@ -2359,11 +3015,11 @@ }, "flake-utils": { "locked": { - "lastModified": 1644229661, - "narHash": "sha256-1YdnJAsNy69bpcjuoKdOYQX0YxZBiCYZo4Twxerqv7k=", + "lastModified": 1623875721, + "narHash": "sha256-A8BU7bjS5GirpAUv4QA+QnJ4CceLHkcXdRp4xITDB0s=", "owner": "numtide", "repo": "flake-utils", - "rev": "3cecb5b042f7f209c56ffd8371b2711a290ec797", + "rev": "f7e004a55b120c02ecb6219596820fcd32ca8772", "type": "github" }, "original": { @@ -2507,6 +3163,21 @@ "type": "github" } }, + "flake-utils_19": { + "locked": { + "lastModified": 1623875721, + "narHash": "sha256-A8BU7bjS5GirpAUv4QA+QnJ4CceLHkcXdRp4xITDB0s=", + "owner": "numtide", + "repo": "flake-utils", + "rev": "f7e004a55b120c02ecb6219596820fcd32ca8772", + "type": "github" + }, + "original": { + "owner": "numtide", + "repo": "flake-utils", + "type": "github" + } + }, "flake-utils_2": { "locked": { "lastModified": 1644229661, @@ -2522,13 +3193,13 @@ "type": "github" } }, - "flake-utils_3": { + "flake-utils_20": { "locked": { - "lastModified": 1644229661, - "narHash": "sha256-1YdnJAsNy69bpcjuoKdOYQX0YxZBiCYZo4Twxerqv7k=", + "lastModified": 1623875721, + "narHash": "sha256-A8BU7bjS5GirpAUv4QA+QnJ4CceLHkcXdRp4xITDB0s=", "owner": "numtide", "repo": "flake-utils", - "rev": "3cecb5b042f7f209c56ffd8371b2711a290ec797", + "rev": "f7e004a55b120c02ecb6219596820fcd32ca8772", "type": "github" }, "original": { @@ -2537,7 +3208,7 @@ "type": "github" } }, - "flake-utils_4": { + "flake-utils_21": { "locked": { "lastModified": 1623875721, "narHash": "sha256-A8BU7bjS5GirpAUv4QA+QnJ4CceLHkcXdRp4xITDB0s=", @@ -2552,7 +3223,22 @@ "type": "github" } }, - "flake-utils_5": { + "flake-utils_22": { + "locked": { + "lastModified": 1623875721, + "narHash": "sha256-A8BU7bjS5GirpAUv4QA+QnJ4CceLHkcXdRp4xITDB0s=", + "owner": "numtide", + "repo": "flake-utils", + "rev": "f7e004a55b120c02ecb6219596820fcd32ca8772", + "type": "github" + }, + "original": { + "owner": "numtide", + "repo": "flake-utils", + "type": "github" + } + }, + "flake-utils_23": { "locked": { "lastModified": 1623875721, "narHash": "sha256-A8BU7bjS5GirpAUv4QA+QnJ4CceLHkcXdRp4xITDB0s=", @@ -2567,6 +3253,51 @@ "type": "github" } }, + "flake-utils_3": { + "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_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": 1644229661, + "narHash": "sha256-1YdnJAsNy69bpcjuoKdOYQX0YxZBiCYZo4Twxerqv7k=", + "owner": "numtide", + "repo": "flake-utils", + "rev": "3cecb5b042f7f209c56ffd8371b2711a290ec797", + "type": "github" + }, + "original": { + "owner": "numtide", + "repo": "flake-utils", + "type": "github" + } + }, "flake-utils_6": { "locked": { "lastModified": 1623875721, @@ -2797,7 +3528,7 @@ "type": "github" } }, - "ghc-8.6.5-iohk_2": { + "ghc-8.6.5-iohk_19": { "flake": false, "locked": { "lastModified": 1600920045, @@ -2814,7 +3545,7 @@ "type": "github" } }, - "ghc-8.6.5-iohk_3": { + "ghc-8.6.5-iohk_2": { "flake": false, "locked": { "lastModified": 1600920045, @@ -2831,7 +3562,7 @@ "type": "github" } }, - "ghc-8.6.5-iohk_4": { + "ghc-8.6.5-iohk_20": { "flake": false, "locked": { "lastModified": 1600920045, @@ -2848,7 +3579,7 @@ "type": "github" } }, - "ghc-8.6.5-iohk_5": { + "ghc-8.6.5-iohk_21": { "flake": false, "locked": { "lastModified": 1600920045, @@ -2865,7 +3596,7 @@ "type": "github" } }, - "ghc-8.6.5-iohk_6": { + "ghc-8.6.5-iohk_22": { "flake": false, "locked": { "lastModified": 1600920045, @@ -2882,7 +3613,7 @@ "type": "github" } }, - "ghc-8.6.5-iohk_7": { + "ghc-8.6.5-iohk_23": { "flake": false, "locked": { "lastModified": 1600920045, @@ -2899,7 +3630,7 @@ "type": "github" } }, - "ghc-8.6.5-iohk_8": { + "ghc-8.6.5-iohk_3": { "flake": false, "locked": { "lastModified": 1600920045, @@ -2916,7 +3647,7 @@ "type": "github" } }, - "ghc-8.6.5-iohk_9": { + "ghc-8.6.5-iohk_4": { "flake": false, "locked": { "lastModified": 1600920045, @@ -2933,55 +3664,172 @@ "type": "github" } }, - "hackage": { + "ghc-8.6.5-iohk_5": { "flake": false, "locked": { - "lastModified": 1648689423, - "narHash": "sha256-5zEPRdHArPtFv/6gRVZXcxG2Wps5qoUAxBjbxd7UjQ4=", + "lastModified": 1600920045, + "narHash": "sha256-DO6kxJz248djebZLpSzTGD6s8WRpNI9BTwUeOf5RwY8=", "owner": "input-output-hk", - "repo": "hackage.nix", - "rev": "aa3358e56f0184f636254ed8124275c84e66c43b", + "repo": "ghc", + "rev": "95713a6ecce4551240da7c96b6176f980af75cae", "type": "github" }, "original": { "owner": "input-output-hk", - "repo": "hackage.nix", + "ref": "release/8.6.5-iohk", + "repo": "ghc", "type": "github" } }, - "hackageNix": { + "ghc-8.6.5-iohk_6": { "flake": false, "locked": { - "lastModified": 1646961339, - "narHash": "sha256-hsXNxSugSyOALfOt0I+mXrKioJ/nWX49/RhF/88N6D0=", + "lastModified": 1600920045, + "narHash": "sha256-DO6kxJz248djebZLpSzTGD6s8WRpNI9BTwUeOf5RwY8=", "owner": "input-output-hk", - "repo": "hackage.nix", - "rev": "5dea95d408c29b56a14faae378ae4e39d63126f4", + "repo": "ghc", + "rev": "95713a6ecce4551240da7c96b6176f980af75cae", "type": "github" }, "original": { "owner": "input-output-hk", - "repo": "hackage.nix", + "ref": "release/8.6.5-iohk", + "repo": "ghc", "type": "github" } }, - "hackage_10": { + "ghc-8.6.5-iohk_7": { "flake": false, "locked": { - "lastModified": 1643073363, - "narHash": "sha256-66oSXQKEDIOSQ2uKAS9facCX/Zuh/jFgyFDtxEqN9sk=", + "lastModified": 1600920045, + "narHash": "sha256-DO6kxJz248djebZLpSzTGD6s8WRpNI9BTwUeOf5RwY8=", "owner": "input-output-hk", - "repo": "hackage.nix", - "rev": "4ef9bd3a32316ce236164c7ebff00ebeb33236e2", + "repo": "ghc", + "rev": "95713a6ecce4551240da7c96b6176f980af75cae", "type": "github" }, "original": { "owner": "input-output-hk", - "repo": "hackage.nix", - "type": "github" + "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" + } + }, + "hackage": { + "flake": false, + "locked": { + "lastModified": 1643073363, + "narHash": "sha256-66oSXQKEDIOSQ2uKAS9facCX/Zuh/jFgyFDtxEqN9sk=", + "owner": "input-output-hk", + "repo": "hackage.nix", + "rev": "4ef9bd3a32316ce236164c7ebff00ebeb33236e2", + "type": "github" + }, + "original": { + "owner": "input-output-hk", + "repo": "hackage.nix", + "type": "github" + } + }, + "hackageNix": { + "flake": false, + "locked": { + "lastModified": 1654478164, + "narHash": "sha256-yunJSaYIJwYEEm3TdKwphpn1svlPQfYZL2GbQQObTtc=", + "owner": "input-output-hk", + "repo": "hackage.nix", + "rev": "b6543396beed02768ed84cc5d24a14cd92498eec", + "type": "github" + }, + "original": { + "owner": "input-output-hk", + "repo": "hackage.nix", + "type": "github" + } + }, + "hackageNix_2": { + "flake": false, + "locked": { + "lastModified": 1646961339, + "narHash": "sha256-hsXNxSugSyOALfOt0I+mXrKioJ/nWX49/RhF/88N6D0=", + "owner": "input-output-hk", + "repo": "hackage.nix", + "rev": "5dea95d408c29b56a14faae378ae4e39d63126f4", + "type": "github" + }, + "original": { + "owner": "input-output-hk", + "repo": "hackage.nix", + "type": "github" + } + }, + "hackage_10": { + "flake": false, + "locked": { + "lastModified": 1643073363, + "narHash": "sha256-66oSXQKEDIOSQ2uKAS9facCX/Zuh/jFgyFDtxEqN9sk=", + "owner": "input-output-hk", + "repo": "hackage.nix", + "rev": "4ef9bd3a32316ce236164c7ebff00ebeb33236e2", + "type": "github" + }, + "original": { + "owner": "input-output-hk", + "repo": "hackage.nix", + "type": "github" } }, "hackage_11": { + "flake": false, + "locked": { + "lastModified": 1643073363, + "narHash": "sha256-66oSXQKEDIOSQ2uKAS9facCX/Zuh/jFgyFDtxEqN9sk=", + "owner": "input-output-hk", + "repo": "hackage.nix", + "rev": "4ef9bd3a32316ce236164c7ebff00ebeb33236e2", + "type": "github" + }, + "original": { + "owner": "input-output-hk", + "repo": "hackage.nix", + "type": "github" + } + }, + "hackage_12": { "flake": false, "locked": { "lastModified": 1639098768, @@ -2997,7 +3845,7 @@ "type": "github" } }, - "hackage_12": { + "hackage_13": { "flake": false, "locked": { "lastModified": 1643073363, @@ -3013,7 +3861,7 @@ "type": "github" } }, - "hackage_13": { + "hackage_14": { "flake": false, "locked": { "lastModified": 1643073363, @@ -3029,7 +3877,7 @@ "type": "github" } }, - "hackage_14": { + "hackage_15": { "flake": false, "locked": { "lastModified": 1639098768, @@ -3045,7 +3893,7 @@ "type": "github" } }, - "hackage_15": { + "hackage_16": { "flake": false, "locked": { "lastModified": 1643073363, @@ -3061,7 +3909,7 @@ "type": "github" } }, - "hackage_16": { + "hackage_17": { "flake": false, "locked": { "lastModified": 1643073363, @@ -3077,7 +3925,7 @@ "type": "github" } }, - "hackage_17": { + "hackage_18": { "flake": false, "locked": { "lastModified": 1639098768, @@ -3093,14 +3941,30 @@ "type": "github" } }, + "hackage_19": { + "flake": false, + "locked": { + "lastModified": 1643073363, + "narHash": "sha256-66oSXQKEDIOSQ2uKAS9facCX/Zuh/jFgyFDtxEqN9sk=", + "owner": "input-output-hk", + "repo": "hackage.nix", + "rev": "4ef9bd3a32316ce236164c7ebff00ebeb33236e2", + "type": "github" + }, + "original": { + "owner": "input-output-hk", + "repo": "hackage.nix", + "type": "github" + } + }, "hackage_2": { "flake": false, "locked": { - "lastModified": 1648084640, - "narHash": "sha256-VZtCnrP+pQX/t1u1faiPppDq3R6siaxFlfYN/IRyETY=", + "lastModified": 1648689423, + "narHash": "sha256-5zEPRdHArPtFv/6gRVZXcxG2Wps5qoUAxBjbxd7UjQ4=", "owner": "input-output-hk", "repo": "hackage.nix", - "rev": "e7a26675f853b5c206256bcabeed4f8c1153ba99", + "rev": "aa3358e56f0184f636254ed8124275c84e66c43b", "type": "github" }, "original": { @@ -3109,7 +3973,7 @@ "type": "github" } }, - "hackage_3": { + "hackage_20": { "flake": false, "locked": { "lastModified": 1643073363, @@ -3125,6 +3989,38 @@ "type": "github" } }, + "hackage_21": { + "flake": false, + "locked": { + "lastModified": 1639098768, + "narHash": "sha256-DZ4sG8FeDxWvBLixrj0jELXjtebZ0SCCPmQW43HNzIE=", + "owner": "input-output-hk", + "repo": "hackage.nix", + "rev": "c7b123af6b0b9b364cab03363504d42dca16a4b5", + "type": "github" + }, + "original": { + "owner": "input-output-hk", + "repo": "hackage.nix", + "type": "github" + } + }, + "hackage_3": { + "flake": false, + "locked": { + "lastModified": 1648084640, + "narHash": "sha256-VZtCnrP+pQX/t1u1faiPppDq3R6siaxFlfYN/IRyETY=", + "owner": "input-output-hk", + "repo": "hackage.nix", + "rev": "e7a26675f853b5c206256bcabeed4f8c1153ba99", + "type": "github" + }, + "original": { + "owner": "input-output-hk", + "repo": "hackage.nix", + "type": "github" + } + }, "hackage_4": { "flake": false, "locked": { @@ -3176,11 +4072,11 @@ "hackage_7": { "flake": false, "locked": { - "lastModified": 1639098768, - "narHash": "sha256-DZ4sG8FeDxWvBLixrj0jELXjtebZ0SCCPmQW43HNzIE=", + "lastModified": 1643073363, + "narHash": "sha256-66oSXQKEDIOSQ2uKAS9facCX/Zuh/jFgyFDtxEqN9sk=", "owner": "input-output-hk", "repo": "hackage.nix", - "rev": "c7b123af6b0b9b364cab03363504d42dca16a4b5", + "rev": "4ef9bd3a32316ce236164c7ebff00ebeb33236e2", "type": "github" }, "original": { @@ -3192,11 +4088,11 @@ "hackage_8": { "flake": false, "locked": { - "lastModified": 1643073363, - "narHash": "sha256-66oSXQKEDIOSQ2uKAS9facCX/Zuh/jFgyFDtxEqN9sk=", + "lastModified": 1639098768, + "narHash": "sha256-DZ4sG8FeDxWvBLixrj0jELXjtebZ0SCCPmQW43HNzIE=", "owner": "input-output-hk", "repo": "hackage.nix", - "rev": "4ef9bd3a32316ce236164c7ebff00ebeb33236e2", + "rev": "c7b123af6b0b9b364cab03363504d42dca16a4b5", "type": "github" }, "original": { @@ -3232,7 +4128,6 @@ "ghc-8.6.5-iohk": "ghc-8.6.5-iohk", "hackage": "hackage", "hpc-coveralls": "hpc-coveralls", - "hydra": "hydra", "nix-tools": "nix-tools", "nixpkgs": [ "cardano-node-workbench", @@ -3246,11 +4141,11 @@ "stackage": "stackage" }, "locked": { - "lastModified": 1648689547, - "narHash": "sha256-ea8Celj9aPb1HG8mGNorqMr5+3xZzjuhjF89Mj4hSLU=", + "lastModified": 1643073543, + "narHash": "sha256-g2l/KDWzMRTFRugNVcx3CPZeyA5BNcH9/zDiqFpprB4=", "owner": "input-output-hk", "repo": "haskell.nix", - "rev": "3fbb17e63c4e052c8289858fa6444d1c66ab6f52", + "rev": "14f740c7c8f535581c30b1697018e389680e24cb", "type": "github" }, "original": { @@ -3264,18 +4159,19 @@ "HTTP": "HTTP_10", "cabal-32": "cabal-32_10", "cabal-34": "cabal-34_10", - "cabal-36": "cabal-36_9", "cardano-shell": "cardano-shell_10", "flake-utils": "flake-utils_10", "ghc-8.6.5-iohk": "ghc-8.6.5-iohk_10", - "hackage": "hackage_9", + "hackage": "hackage_8", "hpc-coveralls": "hpc-coveralls_10", "nix-tools": "nix-tools_10", "nixpkgs": [ "node-measured", - "node-process", + "node-measured", + "node-measured", "membench", "cardano-node-snapshot", + "plutus-example", "nixpkgs" ], "nixpkgs-2003": "nixpkgs-2003_10", @@ -3286,11 +4182,11 @@ "stackage": "stackage_10" }, "locked": { - "lastModified": 1643073543, - "narHash": "sha256-g2l/KDWzMRTFRugNVcx3CPZeyA5BNcH9/zDiqFpprB4=", + "lastModified": 1639098904, + "narHash": "sha256-7VrCNEaKGLm4pTOS11dt1dRL2033oqrNCfal0uONsqA=", "owner": "input-output-hk", "repo": "haskell.nix", - "rev": "14f740c7c8f535581c30b1697018e389680e24cb", + "rev": "b18c6ce0867fee77f12ecf41dc6c67f7a59d9826", "type": "github" }, "original": { @@ -3308,16 +4204,13 @@ "cardano-shell": "cardano-shell_11", "flake-utils": "flake-utils_11", "ghc-8.6.5-iohk": "ghc-8.6.5-iohk_11", - "hackage": "hackage_10", + "hackage": "hackage_9", "hpc-coveralls": "hpc-coveralls_11", "nix-tools": "nix-tools_11", "nixpkgs": [ + "node-measured", "node-measured", "node-process", - "membench", - "cardano-node-snapshot", - "membench", - "cardano-node-snapshot", "nixpkgs" ], "nixpkgs-2003": "nixpkgs-2003_11", @@ -3346,18 +4239,19 @@ "HTTP": "HTTP_12", "cabal-32": "cabal-32_12", "cabal-34": "cabal-34_12", + "cabal-36": "cabal-36_11", "cardano-shell": "cardano-shell_12", "flake-utils": "flake-utils_12", "ghc-8.6.5-iohk": "ghc-8.6.5-iohk_12", - "hackage": "hackage_11", + "hackage": "hackage_10", "hpc-coveralls": "hpc-coveralls_12", "nix-tools": "nix-tools_12", "nixpkgs": [ + "node-measured", "node-measured", "node-process", "membench", "cardano-node-snapshot", - "plutus-example", "nixpkgs" ], "nixpkgs-2003": "nixpkgs-2003_12", @@ -3368,11 +4262,11 @@ "stackage": "stackage_12" }, "locked": { - "lastModified": 1639098904, - "narHash": "sha256-7VrCNEaKGLm4pTOS11dt1dRL2033oqrNCfal0uONsqA=", + "lastModified": 1643073543, + "narHash": "sha256-g2l/KDWzMRTFRugNVcx3CPZeyA5BNcH9/zDiqFpprB4=", "owner": "input-output-hk", "repo": "haskell.nix", - "rev": "b18c6ce0867fee77f12ecf41dc6c67f7a59d9826", + "rev": "14f740c7c8f535581c30b1697018e389680e24cb", "type": "github" }, "original": { @@ -3386,16 +4280,21 @@ "HTTP": "HTTP_13", "cabal-32": "cabal-32_13", "cabal-34": "cabal-34_13", - "cabal-36": "cabal-36_11", + "cabal-36": "cabal-36_12", "cardano-shell": "cardano-shell_13", "flake-utils": "flake-utils_13", "ghc-8.6.5-iohk": "ghc-8.6.5-iohk_13", - "hackage": "hackage_12", + "hackage": "hackage_11", "hpc-coveralls": "hpc-coveralls_13", "nix-tools": "nix-tools_13", "nixpkgs": [ "node-measured", - "node-snapshot", + "node-measured", + "node-process", + "membench", + "cardano-node-snapshot", + "membench", + "cardano-node-snapshot", "nixpkgs" ], "nixpkgs-2003": "nixpkgs-2003_13", @@ -3424,18 +4323,19 @@ "HTTP": "HTTP_14", "cabal-32": "cabal-32_14", "cabal-34": "cabal-34_14", - "cabal-36": "cabal-36_12", "cardano-shell": "cardano-shell_14", "flake-utils": "flake-utils_14", "ghc-8.6.5-iohk": "ghc-8.6.5-iohk_14", - "hackage": "hackage_13", + "hackage": "hackage_12", "hpc-coveralls": "hpc-coveralls_14", "nix-tools": "nix-tools_14", "nixpkgs": [ "node-measured", - "node-snapshot", + "node-measured", + "node-process", "membench", "cardano-node-snapshot", + "plutus-example", "nixpkgs" ], "nixpkgs-2003": "nixpkgs-2003_14", @@ -3446,11 +4346,11 @@ "stackage": "stackage_14" }, "locked": { - "lastModified": 1643073543, - "narHash": "sha256-g2l/KDWzMRTFRugNVcx3CPZeyA5BNcH9/zDiqFpprB4=", + "lastModified": 1639098904, + "narHash": "sha256-7VrCNEaKGLm4pTOS11dt1dRL2033oqrNCfal0uONsqA=", "owner": "input-output-hk", "repo": "haskell.nix", - "rev": "14f740c7c8f535581c30b1697018e389680e24cb", + "rev": "b18c6ce0867fee77f12ecf41dc6c67f7a59d9826", "type": "github" }, "original": { @@ -3464,16 +4364,17 @@ "HTTP": "HTTP_15", "cabal-32": "cabal-32_15", "cabal-34": "cabal-34_15", + "cabal-36": "cabal-36_13", "cardano-shell": "cardano-shell_15", "flake-utils": "flake-utils_15", "ghc-8.6.5-iohk": "ghc-8.6.5-iohk_15", - "hackage": "hackage_14", + "hackage": "hackage_13", "hpc-coveralls": "hpc-coveralls_15", "nix-tools": "nix-tools_15", "nixpkgs": [ + "node-measured", "node-measured", "node-snapshot", - "plutus-example", "nixpkgs" ], "nixpkgs-2003": "nixpkgs-2003_15", @@ -3484,11 +4385,11 @@ "stackage": "stackage_15" }, "locked": { - "lastModified": 1639098904, - "narHash": "sha256-7VrCNEaKGLm4pTOS11dt1dRL2033oqrNCfal0uONsqA=", + "lastModified": 1643073543, + "narHash": "sha256-g2l/KDWzMRTFRugNVcx3CPZeyA5BNcH9/zDiqFpprB4=", "owner": "input-output-hk", "repo": "haskell.nix", - "rev": "b18c6ce0867fee77f12ecf41dc6c67f7a59d9826", + "rev": "14f740c7c8f535581c30b1697018e389680e24cb", "type": "github" }, "original": { @@ -3502,15 +4403,19 @@ "HTTP": "HTTP_16", "cabal-32": "cabal-32_16", "cabal-34": "cabal-34_16", - "cabal-36": "cabal-36_13", + "cabal-36": "cabal-36_14", "cardano-shell": "cardano-shell_16", "flake-utils": "flake-utils_16", "ghc-8.6.5-iohk": "ghc-8.6.5-iohk_16", - "hackage": "hackage_15", + "hackage": "hackage_14", "hpc-coveralls": "hpc-coveralls_16", "nix-tools": "nix-tools_16", "nixpkgs": [ + "node-measured", + "node-measured", "node-snapshot", + "membench", + "cardano-node-snapshot", "nixpkgs" ], "nixpkgs-2003": "nixpkgs-2003_16", @@ -3539,17 +4444,17 @@ "HTTP": "HTTP_17", "cabal-32": "cabal-32_17", "cabal-34": "cabal-34_17", - "cabal-36": "cabal-36_14", "cardano-shell": "cardano-shell_17", "flake-utils": "flake-utils_17", "ghc-8.6.5-iohk": "ghc-8.6.5-iohk_17", - "hackage": "hackage_16", + "hackage": "hackage_15", "hpc-coveralls": "hpc-coveralls_17", "nix-tools": "nix-tools_17", "nixpkgs": [ + "node-measured", + "node-measured", "node-snapshot", - "membench", - "cardano-node-snapshot", + "plutus-example", "nixpkgs" ], "nixpkgs-2003": "nixpkgs-2003_17", @@ -3560,11 +4465,11 @@ "stackage": "stackage_17" }, "locked": { - "lastModified": 1643073543, - "narHash": "sha256-g2l/KDWzMRTFRugNVcx3CPZeyA5BNcH9/zDiqFpprB4=", + "lastModified": 1639098904, + "narHash": "sha256-7VrCNEaKGLm4pTOS11dt1dRL2033oqrNCfal0uONsqA=", "owner": "input-output-hk", "repo": "haskell.nix", - "rev": "14f740c7c8f535581c30b1697018e389680e24cb", + "rev": "b18c6ce0867fee77f12ecf41dc6c67f7a59d9826", "type": "github" }, "original": { @@ -3578,15 +4483,16 @@ "HTTP": "HTTP_18", "cabal-32": "cabal-32_18", "cabal-34": "cabal-34_18", + "cabal-36": "cabal-36_15", "cardano-shell": "cardano-shell_18", "flake-utils": "flake-utils_18", "ghc-8.6.5-iohk": "ghc-8.6.5-iohk_18", - "hackage": "hackage_17", + "hackage": "hackage_16", "hpc-coveralls": "hpc-coveralls_18", "nix-tools": "nix-tools_18", "nixpkgs": [ + "node-measured", "node-snapshot", - "plutus-example", "nixpkgs" ], "nixpkgs-2003": "nixpkgs-2003_18", @@ -3597,11 +4503,51 @@ "stackage": "stackage_18" }, "locked": { - "lastModified": 1639098904, - "narHash": "sha256-7VrCNEaKGLm4pTOS11dt1dRL2033oqrNCfal0uONsqA=", + "lastModified": 1643073543, + "narHash": "sha256-g2l/KDWzMRTFRugNVcx3CPZeyA5BNcH9/zDiqFpprB4=", "owner": "input-output-hk", "repo": "haskell.nix", - "rev": "b18c6ce0867fee77f12ecf41dc6c67f7a59d9826", + "rev": "14f740c7c8f535581c30b1697018e389680e24cb", + "type": "github" + }, + "original": { + "owner": "input-output-hk", + "repo": "haskell.nix", + "type": "github" + } + }, + "haskellNix_19": { + "inputs": { + "HTTP": "HTTP_19", + "cabal-32": "cabal-32_19", + "cabal-34": "cabal-34_19", + "cabal-36": "cabal-36_16", + "cardano-shell": "cardano-shell_19", + "flake-utils": "flake-utils_19", + "ghc-8.6.5-iohk": "ghc-8.6.5-iohk_19", + "hackage": "hackage_17", + "hpc-coveralls": "hpc-coveralls_19", + "nix-tools": "nix-tools_19", + "nixpkgs": [ + "node-measured", + "node-snapshot", + "membench", + "cardano-node-snapshot", + "nixpkgs" + ], + "nixpkgs-2003": "nixpkgs-2003_19", + "nixpkgs-2105": "nixpkgs-2105_19", + "nixpkgs-2111": "nixpkgs-2111_19", + "nixpkgs-unstable": "nixpkgs-unstable_19", + "old-ghc-nix": "old-ghc-nix_19", + "stackage": "stackage_19" + }, + "locked": { + "lastModified": 1643073543, + "narHash": "sha256-g2l/KDWzMRTFRugNVcx3CPZeyA5BNcH9/zDiqFpprB4=", + "owner": "input-output-hk", + "repo": "haskell.nix", + "rev": "14f740c7c8f535581c30b1697018e389680e24cb", "type": "github" }, "original": { @@ -3623,7 +4569,7 @@ "hackageNix" ], "hpc-coveralls": "hpc-coveralls_2", - "hydra": "hydra_2", + "hydra": "hydra", "nix-tools": "nix-tools_2", "nixpkgs": [ "nixpkgs" @@ -3636,11 +4582,162 @@ "stackage": "stackage_2" }, "locked": { - "lastModified": 1649639788, - "narHash": "sha256-nBzRclDcVCEwrIMOYTNOZltd0bUhSyTk0c3UIrjqFhI=", + "lastModified": 1654479977, + "narHash": "sha256-qEeNnm7Hsyf2kLKLkxkNtR43uZrZ1e1mBuBOhQqXxzk=", "owner": "input-output-hk", "repo": "haskell.nix", - "rev": "fd74389bcf72b419f25cb6fe81c951b02ede4985", + "rev": "aaf333d2d865c31fd69d7d14accbbfc65e29135a", + "type": "github" + }, + "original": { + "owner": "input-output-hk", + "repo": "haskell.nix", + "type": "github" + } + }, + "haskellNix_20": { + "inputs": { + "HTTP": "HTTP_20", + "cabal-32": "cabal-32_20", + "cabal-34": "cabal-34_20", + "cardano-shell": "cardano-shell_20", + "flake-utils": "flake-utils_20", + "ghc-8.6.5-iohk": "ghc-8.6.5-iohk_20", + "hackage": "hackage_18", + "hpc-coveralls": "hpc-coveralls_20", + "nix-tools": "nix-tools_20", + "nixpkgs": [ + "node-measured", + "node-snapshot", + "plutus-example", + "nixpkgs" + ], + "nixpkgs-2003": "nixpkgs-2003_20", + "nixpkgs-2105": "nixpkgs-2105_20", + "nixpkgs-2111": "nixpkgs-2111_20", + "nixpkgs-unstable": "nixpkgs-unstable_20", + "old-ghc-nix": "old-ghc-nix_20", + "stackage": "stackage_20" + }, + "locked": { + "lastModified": 1639098904, + "narHash": "sha256-7VrCNEaKGLm4pTOS11dt1dRL2033oqrNCfal0uONsqA=", + "owner": "input-output-hk", + "repo": "haskell.nix", + "rev": "b18c6ce0867fee77f12ecf41dc6c67f7a59d9826", + "type": "github" + }, + "original": { + "owner": "input-output-hk", + "repo": "haskell.nix", + "type": "github" + } + }, + "haskellNix_21": { + "inputs": { + "HTTP": "HTTP_21", + "cabal-32": "cabal-32_21", + "cabal-34": "cabal-34_21", + "cabal-36": "cabal-36_17", + "cardano-shell": "cardano-shell_21", + "flake-utils": "flake-utils_21", + "ghc-8.6.5-iohk": "ghc-8.6.5-iohk_21", + "hackage": "hackage_19", + "hpc-coveralls": "hpc-coveralls_21", + "nix-tools": "nix-tools_21", + "nixpkgs": [ + "node-snapshot", + "nixpkgs" + ], + "nixpkgs-2003": "nixpkgs-2003_21", + "nixpkgs-2105": "nixpkgs-2105_21", + "nixpkgs-2111": "nixpkgs-2111_21", + "nixpkgs-unstable": "nixpkgs-unstable_21", + "old-ghc-nix": "old-ghc-nix_21", + "stackage": "stackage_21" + }, + "locked": { + "lastModified": 1643073543, + "narHash": "sha256-g2l/KDWzMRTFRugNVcx3CPZeyA5BNcH9/zDiqFpprB4=", + "owner": "input-output-hk", + "repo": "haskell.nix", + "rev": "14f740c7c8f535581c30b1697018e389680e24cb", + "type": "github" + }, + "original": { + "owner": "input-output-hk", + "repo": "haskell.nix", + "type": "github" + } + }, + "haskellNix_22": { + "inputs": { + "HTTP": "HTTP_22", + "cabal-32": "cabal-32_22", + "cabal-34": "cabal-34_22", + "cabal-36": "cabal-36_18", + "cardano-shell": "cardano-shell_22", + "flake-utils": "flake-utils_22", + "ghc-8.6.5-iohk": "ghc-8.6.5-iohk_22", + "hackage": "hackage_20", + "hpc-coveralls": "hpc-coveralls_22", + "nix-tools": "nix-tools_22", + "nixpkgs": [ + "node-snapshot", + "membench", + "cardano-node-snapshot", + "nixpkgs" + ], + "nixpkgs-2003": "nixpkgs-2003_22", + "nixpkgs-2105": "nixpkgs-2105_22", + "nixpkgs-2111": "nixpkgs-2111_22", + "nixpkgs-unstable": "nixpkgs-unstable_22", + "old-ghc-nix": "old-ghc-nix_22", + "stackage": "stackage_22" + }, + "locked": { + "lastModified": 1643073543, + "narHash": "sha256-g2l/KDWzMRTFRugNVcx3CPZeyA5BNcH9/zDiqFpprB4=", + "owner": "input-output-hk", + "repo": "haskell.nix", + "rev": "14f740c7c8f535581c30b1697018e389680e24cb", + "type": "github" + }, + "original": { + "owner": "input-output-hk", + "repo": "haskell.nix", + "type": "github" + } + }, + "haskellNix_23": { + "inputs": { + "HTTP": "HTTP_23", + "cabal-32": "cabal-32_23", + "cabal-34": "cabal-34_23", + "cardano-shell": "cardano-shell_23", + "flake-utils": "flake-utils_23", + "ghc-8.6.5-iohk": "ghc-8.6.5-iohk_23", + "hackage": "hackage_21", + "hpc-coveralls": "hpc-coveralls_23", + "nix-tools": "nix-tools_23", + "nixpkgs": [ + "node-snapshot", + "plutus-example", + "nixpkgs" + ], + "nixpkgs-2003": "nixpkgs-2003_23", + "nixpkgs-2105": "nixpkgs-2105_23", + "nixpkgs-2111": "nixpkgs-2111_23", + "nixpkgs-unstable": "nixpkgs-unstable_23", + "old-ghc-nix": "old-ghc-nix_23", + "stackage": "stackage_23" + }, + "locked": { + "lastModified": 1639098904, + "narHash": "sha256-7VrCNEaKGLm4pTOS11dt1dRL2033oqrNCfal0uONsqA=", + "owner": "input-output-hk", + "repo": "haskell.nix", + "rev": "b18c6ce0867fee77f12ecf41dc6c67f7a59d9826", "type": "github" }, "original": { @@ -3660,7 +4757,7 @@ "ghc-8.6.5-iohk": "ghc-8.6.5-iohk_3", "hackage": "hackage_2", "hpc-coveralls": "hpc-coveralls_3", - "hydra": "hydra_3", + "hydra": "hydra_2", "nix-tools": "nix-tools_3", "nixpkgs": [ "node-measured", @@ -3675,11 +4772,11 @@ "stackage": "stackage_3" }, "locked": { - "lastModified": 1648084808, - "narHash": "sha256-o6nWoBaYhd+AMVJPravY8Z10HGP1ILx8tU6YcIaUQ9M=", + "lastModified": 1648689547, + "narHash": "sha256-ea8Celj9aPb1HG8mGNorqMr5+3xZzjuhjF89Mj4hSLU=", "owner": "input-output-hk", "repo": "haskell.nix", - "rev": "7ae4953cff38a84d6f5f94a3f5648edf1ce84705", + "rev": "3fbb17e63c4e052c8289858fa6444d1c66ab6f52", "type": "github" }, "original": { @@ -3697,8 +4794,12 @@ "cardano-shell": "cardano-shell_4", "flake-utils": "flake-utils_4", "ghc-8.6.5-iohk": "ghc-8.6.5-iohk_4", - "hackage": "hackage_3", + "hackage": [ + "node-measured", + "hackageNix" + ], "hpc-coveralls": "hpc-coveralls_4", + "hydra": "hydra_3", "nix-tools": "nix-tools_4", "nixpkgs": [ "node-measured", @@ -3712,11 +4813,11 @@ "stackage": "stackage_4" }, "locked": { - "lastModified": 1643073543, - "narHash": "sha256-g2l/KDWzMRTFRugNVcx3CPZeyA5BNcH9/zDiqFpprB4=", + "lastModified": 1649639788, + "narHash": "sha256-nBzRclDcVCEwrIMOYTNOZltd0bUhSyTk0c3UIrjqFhI=", "owner": "input-output-hk", "repo": "haskell.nix", - "rev": "14f740c7c8f535581c30b1697018e389680e24cb", + "rev": "fd74389bcf72b419f25cb6fe81c951b02ede4985", "type": "github" }, "original": { @@ -3734,12 +4835,14 @@ "cardano-shell": "cardano-shell_5", "flake-utils": "flake-utils_5", "ghc-8.6.5-iohk": "ghc-8.6.5-iohk_5", - "hackage": "hackage_4", + "hackage": "hackage_3", "hpc-coveralls": "hpc-coveralls_5", + "hydra": "hydra_4", "nix-tools": "nix-tools_5", "nixpkgs": [ "node-measured", "node-measured", + "cardano-node-workbench", "nixpkgs" ], "nixpkgs-2003": "nixpkgs-2003_5", @@ -3750,11 +4853,11 @@ "stackage": "stackage_5" }, "locked": { - "lastModified": 1643073543, - "narHash": "sha256-g2l/KDWzMRTFRugNVcx3CPZeyA5BNcH9/zDiqFpprB4=", + "lastModified": 1648084808, + "narHash": "sha256-o6nWoBaYhd+AMVJPravY8Z10HGP1ILx8tU6YcIaUQ9M=", "owner": "input-output-hk", "repo": "haskell.nix", - "rev": "14f740c7c8f535581c30b1697018e389680e24cb", + "rev": "7ae4953cff38a84d6f5f94a3f5648edf1ce84705", "type": "github" }, "original": { @@ -3772,14 +4875,12 @@ "cardano-shell": "cardano-shell_6", "flake-utils": "flake-utils_6", "ghc-8.6.5-iohk": "ghc-8.6.5-iohk_6", - "hackage": "hackage_5", + "hackage": "hackage_4", "hpc-coveralls": "hpc-coveralls_6", "nix-tools": "nix-tools_6", "nixpkgs": [ "node-measured", "node-measured", - "membench", - "cardano-node-snapshot", "nixpkgs" ], "nixpkgs-2003": "nixpkgs-2003_6", @@ -3812,16 +4913,13 @@ "cardano-shell": "cardano-shell_7", "flake-utils": "flake-utils_7", "ghc-8.6.5-iohk": "ghc-8.6.5-iohk_7", - "hackage": "hackage_6", + "hackage": "hackage_5", "hpc-coveralls": "hpc-coveralls_7", "nix-tools": "nix-tools_7", "nixpkgs": [ "node-measured", "node-measured", - "membench", - "cardano-node-snapshot", - "membench", - "cardano-node-snapshot", + "node-measured", "nixpkgs" ], "nixpkgs-2003": "nixpkgs-2003_7", @@ -3850,18 +4948,19 @@ "HTTP": "HTTP_8", "cabal-32": "cabal-32_8", "cabal-34": "cabal-34_8", + "cabal-36": "cabal-36_8", "cardano-shell": "cardano-shell_8", "flake-utils": "flake-utils_8", "ghc-8.6.5-iohk": "ghc-8.6.5-iohk_8", - "hackage": "hackage_7", + "hackage": "hackage_6", "hpc-coveralls": "hpc-coveralls_8", "nix-tools": "nix-tools_8", "nixpkgs": [ + "node-measured", "node-measured", "node-measured", "membench", "cardano-node-snapshot", - "plutus-example", "nixpkgs" ], "nixpkgs-2003": "nixpkgs-2003_8", @@ -3872,11 +4971,11 @@ "stackage": "stackage_8" }, "locked": { - "lastModified": 1639098904, - "narHash": "sha256-7VrCNEaKGLm4pTOS11dt1dRL2033oqrNCfal0uONsqA=", + "lastModified": 1643073543, + "narHash": "sha256-g2l/KDWzMRTFRugNVcx3CPZeyA5BNcH9/zDiqFpprB4=", "owner": "input-output-hk", "repo": "haskell.nix", - "rev": "b18c6ce0867fee77f12ecf41dc6c67f7a59d9826", + "rev": "14f740c7c8f535581c30b1697018e389680e24cb", "type": "github" }, "original": { @@ -3890,16 +4989,21 @@ "HTTP": "HTTP_9", "cabal-32": "cabal-32_9", "cabal-34": "cabal-34_9", - "cabal-36": "cabal-36_8", + "cabal-36": "cabal-36_9", "cardano-shell": "cardano-shell_9", "flake-utils": "flake-utils_9", "ghc-8.6.5-iohk": "ghc-8.6.5-iohk_9", - "hackage": "hackage_8", + "hackage": "hackage_7", "hpc-coveralls": "hpc-coveralls_9", "nix-tools": "nix-tools_9", "nixpkgs": [ "node-measured", - "node-process", + "node-measured", + "node-measured", + "membench", + "cardano-node-snapshot", + "membench", + "cardano-node-snapshot", "nixpkgs" ], "nixpkgs-2003": "nixpkgs-2003_9", @@ -4083,7 +5187,7 @@ "type": "github" } }, - "hpc-coveralls_2": { + "hpc-coveralls_19": { "flake": false, "locked": { "lastModified": 1607498076, @@ -4099,7 +5203,7 @@ "type": "github" } }, - "hpc-coveralls_3": { + "hpc-coveralls_2": { "flake": false, "locked": { "lastModified": 1607498076, @@ -4115,7 +5219,7 @@ "type": "github" } }, - "hpc-coveralls_4": { + "hpc-coveralls_20": { "flake": false, "locked": { "lastModified": 1607498076, @@ -4131,7 +5235,7 @@ "type": "github" } }, - "hpc-coveralls_5": { + "hpc-coveralls_21": { "flake": false, "locked": { "lastModified": 1607498076, @@ -4147,7 +5251,7 @@ "type": "github" } }, - "hpc-coveralls_6": { + "hpc-coveralls_22": { "flake": false, "locked": { "lastModified": 1607498076, @@ -4163,7 +5267,7 @@ "type": "github" } }, - "hpc-coveralls_7": { + "hpc-coveralls_23": { "flake": false, "locked": { "lastModified": 1607498076, @@ -4179,7 +5283,7 @@ "type": "github" } }, - "hpc-coveralls_8": { + "hpc-coveralls_3": { "flake": false, "locked": { "lastModified": 1607498076, @@ -4195,7 +5299,7 @@ "type": "github" } }, - "hpc-coveralls_9": { + "hpc-coveralls_4": { "flake": false, "locked": { "lastModified": 1607498076, @@ -4211,34 +5315,115 @@ "type": "github" } }, - "hydra": { - "inputs": { - "nix": "nix", - "nixpkgs": [ - "cardano-node-workbench", - "haskellNix", - "hydra", - "nix", - "nixpkgs" - ] - }, + "hpc-coveralls_5": { + "flake": false, "locked": { - "lastModified": 1646878427, - "narHash": "sha256-KtbrofMtN8GlM7D+n90kixr7QpSlVmdN+vK5CA/aRzc=", - "owner": "NixOS", - "repo": "hydra", - "rev": "28b682b85b7efc5cf7974065792a1f22203a5927", + "lastModified": 1607498076, + "narHash": "sha256-8uqsEtivphgZWYeUo5RDUhp6bO9j2vaaProQxHBltQk=", + "owner": "sevanspowell", + "repo": "hpc-coveralls", + "rev": "14df0f7d229f4cd2e79f8eabb1a740097fdfa430", "type": "github" }, "original": { - "id": "hydra", - "type": "indirect" + "owner": "sevanspowell", + "repo": "hpc-coveralls", + "type": "github" } }, - "hydra_2": { - "inputs": { - "nix": "nix_2", + "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" + } + }, + "hydra": { + "inputs": { + "nix": "nix", + "nixpkgs": [ + "haskellNix", + "hydra", + "nix", + "nixpkgs" + ] + }, + "locked": { + "lastModified": 1646878427, + "narHash": "sha256-KtbrofMtN8GlM7D+n90kixr7QpSlVmdN+vK5CA/aRzc=", + "owner": "NixOS", + "repo": "hydra", + "rev": "28b682b85b7efc5cf7974065792a1f22203a5927", + "type": "github" + }, + "original": { + "id": "hydra", + "type": "indirect" + } + }, + "hydra_2": { + "inputs": { + "nix": "nix_2", "nixpkgs": [ + "node-measured", + "cardano-node-workbench", "haskellNix", "hydra", "nix", @@ -4262,6 +5447,31 @@ "inputs": { "nix": "nix_3", "nixpkgs": [ + "node-measured", + "haskellNix", + "hydra", + "nix", + "nixpkgs" + ] + }, + "locked": { + "lastModified": 1646878427, + "narHash": "sha256-KtbrofMtN8GlM7D+n90kixr7QpSlVmdN+vK5CA/aRzc=", + "owner": "NixOS", + "repo": "hydra", + "rev": "28b682b85b7efc5cf7974065792a1f22203a5927", + "type": "github" + }, + "original": { + "id": "hydra", + "type": "indirect" + } + }, + "hydra_4": { + "inputs": { + "nix": "nix_4", + "nixpkgs": [ + "node-measured", "node-measured", "cardano-node-workbench", "haskellNix", @@ -4291,11 +5501,11 @@ ] }, "locked": { - "lastModified": 1648032999, - "narHash": "sha256-3uCz+gJppvM7z6CUCkBbFSu60WgIE+e3oXwXiAiGWSY=", + "lastModified": 1645693195, + "narHash": "sha256-UDemE2MFEi/L8Xmwi1/FuKU9ka3QqDye6k7rVW6ryeE=", "owner": "input-output-hk", "repo": "iohk-nix", - "rev": "5e667b374153327c7bdfdbfab8ef19b1f27d4aac", + "rev": "29c9a3b6704b5c0df3bb4a3e65240749883c50a0", "type": "github" }, "original": { @@ -4307,6 +5517,56 @@ "iohkNix_10": { "inputs": { "nixpkgs": [ + "node-measured", + "node-measured", + "node-measured", + "membench", + "cardano-node-snapshot", + "plutus-example", + "nixpkgs" + ] + }, + "locked": { + "lastModified": 1633964277, + "narHash": "sha256-7G/BK514WiMRr90EswNBthe8SmH9tjPaTBba/RW/VA8=", + "owner": "input-output-hk", + "repo": "iohk-nix", + "rev": "1e51437aac8a0e49663cb21e781f34163c81ebfb", + "type": "github" + }, + "original": { + "owner": "input-output-hk", + "repo": "iohk-nix", + "type": "github" + } + }, + "iohkNix_11": { + "inputs": { + "nixpkgs": [ + "node-measured", + "node-measured", + "node-process", + "nixpkgs" + ] + }, + "locked": { + "lastModified": 1645693195, + "narHash": "sha256-UDemE2MFEi/L8Xmwi1/FuKU9ka3QqDye6k7rVW6ryeE=", + "owner": "input-output-hk", + "repo": "iohk-nix", + "rev": "29c9a3b6704b5c0df3bb4a3e65240749883c50a0", + "type": "github" + }, + "original": { + "owner": "input-output-hk", + "repo": "iohk-nix", + "type": "github" + } + }, + "iohkNix_12": { + "inputs": { + "nixpkgs": [ + "node-measured", "node-measured", "node-process", "membench", @@ -4328,9 +5588,10 @@ "type": "github" } }, - "iohkNix_11": { + "iohkNix_13": { "inputs": { "nixpkgs": [ + "node-measured", "node-measured", "node-process", "membench", @@ -4354,9 +5615,10 @@ "type": "github" } }, - "iohkNix_12": { + "iohkNix_14": { "inputs": { "nixpkgs": [ + "node-measured", "node-measured", "node-process", "membench", @@ -4379,9 +5641,10 @@ "type": "github" } }, - "iohkNix_13": { + "iohkNix_15": { "inputs": { "nixpkgs": [ + "node-measured", "node-measured", "node-snapshot", "nixpkgs" @@ -4401,9 +5664,10 @@ "type": "github" } }, - "iohkNix_14": { + "iohkNix_16": { "inputs": { "nixpkgs": [ + "node-measured", "node-measured", "node-snapshot", "membench", @@ -4425,9 +5689,10 @@ "type": "github" } }, - "iohkNix_15": { + "iohkNix_17": { "inputs": { "nixpkgs": [ + "node-measured", "node-measured", "node-snapshot", "plutus-example", @@ -4448,9 +5713,10 @@ "type": "github" } }, - "iohkNix_16": { + "iohkNix_18": { "inputs": { "nixpkgs": [ + "node-measured", "node-snapshot", "nixpkgs" ] @@ -4469,9 +5735,10 @@ "type": "github" } }, - "iohkNix_17": { + "iohkNix_19": { "inputs": { "nixpkgs": [ + "node-measured", "node-snapshot", "membench", "cardano-node-snapshot", @@ -4492,9 +5759,30 @@ "type": "github" } }, - "iohkNix_18": { + "iohkNix_2": { + "inputs": { + "nixpkgs": [ + "nixpkgs" + ] + }, + "locked": { + "lastModified": 1653579289, + "narHash": "sha256-wveDdPsgB/3nAGAdFaxrcgLEpdi0aJ5kEVNtI+YqVfo=", + "owner": "input-output-hk", + "repo": "iohk-nix", + "rev": "edb2d2df2ebe42bbdf03a0711115cf6213c9d366", + "type": "github" + }, + "original": { + "owner": "input-output-hk", + "repo": "iohk-nix", + "type": "github" + } + }, + "iohkNix_20": { "inputs": { "nixpkgs": [ + "node-measured", "node-snapshot", "plutus-example", "nixpkgs" @@ -4514,18 +5802,64 @@ "type": "github" } }, - "iohkNix_2": { + "iohkNix_21": { "inputs": { "nixpkgs": [ + "node-snapshot", "nixpkgs" ] }, "locked": { - "lastModified": 1653579289, - "narHash": "sha256-wveDdPsgB/3nAGAdFaxrcgLEpdi0aJ5kEVNtI+YqVfo=", + "lastModified": 1631778944, + "narHash": "sha256-N5eCcUYtZ5kUOl/JJGjx6ZzhA3uIn1itDRTiRV+3jLw=", "owner": "input-output-hk", "repo": "iohk-nix", - "rev": "edb2d2df2ebe42bbdf03a0711115cf6213c9d366", + "rev": "db2c75a09c696271194bb3ef25ec8e9839b594b7", + "type": "github" + }, + "original": { + "owner": "input-output-hk", + "repo": "iohk-nix", + "type": "github" + } + }, + "iohkNix_22": { + "inputs": { + "nixpkgs": [ + "node-snapshot", + "membench", + "cardano-node-snapshot", + "nixpkgs" + ] + }, + "locked": { + "lastModified": 1631778944, + "narHash": "sha256-N5eCcUYtZ5kUOl/JJGjx6ZzhA3uIn1itDRTiRV+3jLw=", + "owner": "input-output-hk", + "repo": "iohk-nix", + "rev": "db2c75a09c696271194bb3ef25ec8e9839b594b7", + "type": "github" + }, + "original": { + "owner": "input-output-hk", + "repo": "iohk-nix", + "type": "github" + } + }, + "iohkNix_23": { + "inputs": { + "nixpkgs": [ + "node-snapshot", + "plutus-example", + "nixpkgs" + ] + }, + "locked": { + "lastModified": 1633964277, + "narHash": "sha256-7G/BK514WiMRr90EswNBthe8SmH9tjPaTBba/RW/VA8=", + "owner": "input-output-hk", + "repo": "iohk-nix", + "rev": "1e51437aac8a0e49663cb21e781f34163c81ebfb", "type": "github" }, "original": { @@ -4564,11 +5898,11 @@ ] }, "locked": { - "lastModified": 1645693195, - "narHash": "sha256-UDemE2MFEi/L8Xmwi1/FuKU9ka3QqDye6k7rVW6ryeE=", + "lastModified": 1653579289, + "narHash": "sha256-wveDdPsgB/3nAGAdFaxrcgLEpdi0aJ5kEVNtI+YqVfo=", "owner": "input-output-hk", "repo": "iohk-nix", - "rev": "29c9a3b6704b5c0df3bb4a3e65240749883c50a0", + "rev": "edb2d2df2ebe42bbdf03a0711115cf6213c9d366", "type": "github" }, "original": { @@ -4582,15 +5916,16 @@ "nixpkgs": [ "node-measured", "node-measured", + "cardano-node-workbench", "nixpkgs" ] }, "locked": { - "lastModified": 1645693195, - "narHash": "sha256-UDemE2MFEi/L8Xmwi1/FuKU9ka3QqDye6k7rVW6ryeE=", + "lastModified": 1648032999, + "narHash": "sha256-3uCz+gJppvM7z6CUCkBbFSu60WgIE+e3oXwXiAiGWSY=", "owner": "input-output-hk", "repo": "iohk-nix", - "rev": "29c9a3b6704b5c0df3bb4a3e65240749883c50a0", + "rev": "5e667b374153327c7bdfdbfab8ef19b1f27d4aac", "type": "github" }, "original": { @@ -4604,17 +5939,15 @@ "nixpkgs": [ "node-measured", "node-measured", - "membench", - "cardano-node-snapshot", "nixpkgs" ] }, "locked": { - "lastModified": 1631778944, - "narHash": "sha256-N5eCcUYtZ5kUOl/JJGjx6ZzhA3uIn1itDRTiRV+3jLw=", + "lastModified": 1645693195, + "narHash": "sha256-UDemE2MFEi/L8Xmwi1/FuKU9ka3QqDye6k7rVW6ryeE=", "owner": "input-output-hk", "repo": "iohk-nix", - "rev": "db2c75a09c696271194bb3ef25ec8e9839b594b7", + "rev": "29c9a3b6704b5c0df3bb4a3e65240749883c50a0", "type": "github" }, "original": { @@ -4628,19 +5961,16 @@ "nixpkgs": [ "node-measured", "node-measured", - "membench", - "cardano-node-snapshot", - "membench", - "cardano-node-snapshot", + "node-measured", "nixpkgs" ] }, "locked": { - "lastModified": 1631778944, - "narHash": "sha256-N5eCcUYtZ5kUOl/JJGjx6ZzhA3uIn1itDRTiRV+3jLw=", + "lastModified": 1645693195, + "narHash": "sha256-UDemE2MFEi/L8Xmwi1/FuKU9ka3QqDye6k7rVW6ryeE=", "owner": "input-output-hk", "repo": "iohk-nix", - "rev": "db2c75a09c696271194bb3ef25ec8e9839b594b7", + "rev": "29c9a3b6704b5c0df3bb4a3e65240749883c50a0", "type": "github" }, "original": { @@ -4652,20 +5982,20 @@ "iohkNix_8": { "inputs": { "nixpkgs": [ + "node-measured", "node-measured", "node-measured", "membench", "cardano-node-snapshot", - "plutus-example", "nixpkgs" ] }, "locked": { - "lastModified": 1633964277, - "narHash": "sha256-7G/BK514WiMRr90EswNBthe8SmH9tjPaTBba/RW/VA8=", + "lastModified": 1631778944, + "narHash": "sha256-N5eCcUYtZ5kUOl/JJGjx6ZzhA3uIn1itDRTiRV+3jLw=", "owner": "input-output-hk", "repo": "iohk-nix", - "rev": "1e51437aac8a0e49663cb21e781f34163c81ebfb", + "rev": "db2c75a09c696271194bb3ef25ec8e9839b594b7", "type": "github" }, "original": { @@ -4678,16 +6008,21 @@ "inputs": { "nixpkgs": [ "node-measured", - "node-process", + "node-measured", + "node-measured", + "membench", + "cardano-node-snapshot", + "membench", + "cardano-node-snapshot", "nixpkgs" ] }, "locked": { - "lastModified": 1645693195, - "narHash": "sha256-UDemE2MFEi/L8Xmwi1/FuKU9ka3QqDye6k7rVW6ryeE=", + "lastModified": 1631778944, + "narHash": "sha256-N5eCcUYtZ5kUOl/JJGjx6ZzhA3uIn1itDRTiRV+3jLw=", "owner": "input-output-hk", "repo": "iohk-nix", - "rev": "29c9a3b6704b5c0df3bb4a3e65240749883c50a0", + "rev": "db2c75a09c696271194bb3ef25ec8e9839b594b7", "type": "github" }, "original": { @@ -4715,42 +6050,175 @@ "lowdown-src_2": { "flake": false, "locked": { - "lastModified": 1633514407, - "narHash": "sha256-Dw32tiMjdK9t3ETl5fzGrutQTzh2rufgZV4A/BbxuD4=", - "owner": "kristapsdz", - "repo": "lowdown", - "rev": "d2c2b44ff6c27b936ec27358a2653caaef8f73b8", + "lastModified": 1633514407, + "narHash": "sha256-Dw32tiMjdK9t3ETl5fzGrutQTzh2rufgZV4A/BbxuD4=", + "owner": "kristapsdz", + "repo": "lowdown", + "rev": "d2c2b44ff6c27b936ec27358a2653caaef8f73b8", + "type": "github" + }, + "original": { + "owner": "kristapsdz", + "repo": "lowdown", + "type": "github" + } + }, + "lowdown-src_3": { + "flake": false, + "locked": { + "lastModified": 1633514407, + "narHash": "sha256-Dw32tiMjdK9t3ETl5fzGrutQTzh2rufgZV4A/BbxuD4=", + "owner": "kristapsdz", + "repo": "lowdown", + "rev": "d2c2b44ff6c27b936ec27358a2653caaef8f73b8", + "type": "github" + }, + "original": { + "owner": "kristapsdz", + "repo": "lowdown", + "type": "github" + } + }, + "lowdown-src_4": { + "flake": false, + "locked": { + "lastModified": 1633514407, + "narHash": "sha256-Dw32tiMjdK9t3ETl5fzGrutQTzh2rufgZV4A/BbxuD4=", + "owner": "kristapsdz", + "repo": "lowdown", + "rev": "d2c2b44ff6c27b936ec27358a2653caaef8f73b8", + "type": "github" + }, + "original": { + "owner": "kristapsdz", + "repo": "lowdown", + "type": "github" + } + }, + "membench": { + "locked": { + "lastModified": 1630400035, + "narHash": "sha256-MWaVOCzuFwp09wZIW9iHq5wWen5C69I940N1swZLEQ0=", + "owner": "input-output-hk", + "repo": "empty-flake", + "rev": "2040a05b67bf9a669ce17eca56beb14b4206a99a", + "type": "github" + }, + "original": { + "owner": "input-output-hk", + "repo": "cardano-memory-benchmark", + "type": "github" + } + }, + "membench_10": { + "inputs": { + "cardano-mainnet-mirror": "cardano-mainnet-mirror_10", + "cardano-node-measured": [ + "node-measured", + "node-measured", + "node-snapshot" + ], + "cardano-node-process": [ + "node-measured", + "node-measured", + "node-snapshot" + ], + "cardano-node-snapshot": "cardano-node-snapshot_5", + "nixpkgs": [ + "node-measured", + "node-measured", + "node-snapshot", + "nixpkgs" + ], + "ouroboros-network": "ouroboros-network_8" + }, + "locked": { + "lastModified": 1645070579, + "narHash": "sha256-AxL6tCOnzYnE6OquoFzj+X1bLDr1PQx3d8/vXm+rbfA=", + "owner": "input-output-hk", + "repo": "cardano-memory-benchmark", + "rev": "65643e000186de1335e24ec89159db8ba85e1c1a", "type": "github" }, "original": { - "owner": "kristapsdz", - "repo": "lowdown", + "owner": "input-output-hk", + "repo": "cardano-memory-benchmark", "type": "github" } }, - "lowdown-src_3": { - "flake": false, + "membench_11": { + "inputs": { + "cardano-mainnet-mirror": "cardano-mainnet-mirror_11", + "cardano-node-measured": [ + "node-measured", + "node-measured", + "node-snapshot", + "membench", + "cardano-node-snapshot" + ], + "cardano-node-process": [ + "node-measured", + "node-measured", + "node-snapshot", + "membench", + "cardano-node-snapshot" + ], + "cardano-node-snapshot": [ + "node-measured", + "node-measured", + "node-snapshot", + "membench", + "cardano-node-snapshot" + ], + "nixpkgs": [ + "node-measured", + "node-measured", + "node-snapshot", + "membench", + "cardano-node-snapshot", + "nixpkgs" + ], + "ouroboros-network": "ouroboros-network_7" + }, "locked": { - "lastModified": 1633514407, - "narHash": "sha256-Dw32tiMjdK9t3ETl5fzGrutQTzh2rufgZV4A/BbxuD4=", - "owner": "kristapsdz", - "repo": "lowdown", - "rev": "d2c2b44ff6c27b936ec27358a2653caaef8f73b8", + "lastModified": 1644547122, + "narHash": "sha256-8nWK+ScMACvRQLbA27gwXNoZver+Wx/cF7V37044koY=", + "owner": "input-output-hk", + "repo": "cardano-memory-benchmark", + "rev": "9d8ff4b9394de0421ee95caa511d01163de88b77", "type": "github" }, "original": { - "owner": "kristapsdz", - "repo": "lowdown", + "owner": "input-output-hk", + "repo": "cardano-memory-benchmark", "type": "github" } }, - "membench": { + "membench_12": { + "inputs": { + "cardano-mainnet-mirror": "cardano-mainnet-mirror_12", + "cardano-node-measured": [ + "node-measured", + "node-snapshot" + ], + "cardano-node-process": [ + "node-measured", + "node-snapshot" + ], + "cardano-node-snapshot": "cardano-node-snapshot_6", + "nixpkgs": [ + "node-measured", + "node-snapshot", + "nixpkgs" + ], + "ouroboros-network": "ouroboros-network_10" + }, "locked": { - "lastModified": 1630400035, - "narHash": "sha256-MWaVOCzuFwp09wZIW9iHq5wWen5C69I940N1swZLEQ0=", + "lastModified": 1645070579, + "narHash": "sha256-AxL6tCOnzYnE6OquoFzj+X1bLDr1PQx3d8/vXm+rbfA=", "owner": "input-output-hk", - "repo": "empty-flake", - "rev": "2040a05b67bf9a669ce17eca56beb14b4206a99a", + "repo": "cardano-memory-benchmark", + "rev": "65643e000186de1335e24ec89159db8ba85e1c1a", "type": "github" }, "original": { @@ -4759,9 +6227,9 @@ "type": "github" } }, - "membench_10": { + "membench_13": { "inputs": { - "cardano-mainnet-mirror": "cardano-mainnet-mirror_10", + "cardano-mainnet-mirror": "cardano-mainnet-mirror_13", "cardano-node-measured": [ "node-measured", "node-snapshot", @@ -4787,7 +6255,7 @@ "cardano-node-snapshot", "nixpkgs" ], - "ouroboros-network": "ouroboros-network_7" + "ouroboros-network": "ouroboros-network_9" }, "locked": { "lastModified": 1644547122, @@ -4803,21 +6271,21 @@ "type": "github" } }, - "membench_11": { + "membench_14": { "inputs": { - "cardano-mainnet-mirror": "cardano-mainnet-mirror_11", + "cardano-mainnet-mirror": "cardano-mainnet-mirror_14", "cardano-node-measured": [ "node-snapshot" ], "cardano-node-process": [ "node-snapshot" ], - "cardano-node-snapshot": "cardano-node-snapshot_6", + "cardano-node-snapshot": "cardano-node-snapshot_7", "nixpkgs": [ "node-snapshot", "nixpkgs" ], - "ouroboros-network": "ouroboros-network_10" + "ouroboros-network": "ouroboros-network_12" }, "locked": { "lastModified": 1645070579, @@ -4833,9 +6301,9 @@ "type": "github" } }, - "membench_12": { + "membench_15": { "inputs": { - "cardano-mainnet-mirror": "cardano-mainnet-mirror_12", + "cardano-mainnet-mirror": "cardano-mainnet-mirror_15", "cardano-node-measured": [ "node-snapshot", "membench", @@ -4857,7 +6325,7 @@ "cardano-node-snapshot", "nixpkgs" ], - "ouroboros-network": "ouroboros-network_9" + "ouroboros-network": "ouroboros-network_11" }, "locked": { "lastModified": 1644547122, @@ -4889,18 +6357,36 @@ } }, "membench_3": { + "locked": { + "lastModified": 1630400035, + "narHash": "sha256-MWaVOCzuFwp09wZIW9iHq5wWen5C69I940N1swZLEQ0=", + "owner": "input-output-hk", + "repo": "empty-flake", + "rev": "2040a05b67bf9a669ce17eca56beb14b4206a99a", + "type": "github" + }, + "original": { + "owner": "input-output-hk", + "repo": "cardano-memory-benchmark", + "type": "github" + } + }, + "membench_4": { "inputs": { - "cardano-mainnet-mirror": "cardano-mainnet-mirror_3", + "cardano-mainnet-mirror": "cardano-mainnet-mirror_4", "cardano-node-measured": [ + "node-measured", "node-measured", "node-measured" ], "cardano-node-process": [ + "node-measured", "node-measured", "node-measured" ], "cardano-node-snapshot": "cardano-node-snapshot", "nixpkgs": [ + "node-measured", "node-measured", "node-measured", "nixpkgs" @@ -4921,16 +6407,18 @@ "type": "github" } }, - "membench_4": { + "membench_5": { "inputs": { - "cardano-mainnet-mirror": "cardano-mainnet-mirror_4", + "cardano-mainnet-mirror": "cardano-mainnet-mirror_5", "cardano-node-measured": [ + "node-measured", "node-measured", "node-measured", "membench", "cardano-node-snapshot" ], "cardano-node-process": [ + "node-measured", "node-measured", "node-measured", "membench", @@ -4938,6 +6426,7 @@ ], "cardano-node-snapshot": "cardano-node-snapshot_2", "nixpkgs": [ + "node-measured", "node-measured", "node-measured", "membench", @@ -4960,10 +6449,11 @@ "type": "github" } }, - "membench_5": { + "membench_6": { "inputs": { - "cardano-mainnet-mirror": "cardano-mainnet-mirror_5", + "cardano-mainnet-mirror": "cardano-mainnet-mirror_6", "cardano-node-measured": [ + "node-measured", "node-measured", "node-measured", "membench", @@ -4972,6 +6462,7 @@ "cardano-node-snapshot" ], "cardano-node-process": [ + "node-measured", "node-measured", "node-measured", "membench", @@ -4980,6 +6471,7 @@ "cardano-node-snapshot" ], "cardano-node-snapshot": [ + "node-measured", "node-measured", "node-measured", "membench", @@ -4988,6 +6480,7 @@ "cardano-node-snapshot" ], "nixpkgs": [ + "node-measured", "node-measured", "node-measured", "membench", @@ -5012,19 +6505,22 @@ "type": "github" } }, - "membench_6": { + "membench_7": { "inputs": { - "cardano-mainnet-mirror": "cardano-mainnet-mirror_6", + "cardano-mainnet-mirror": "cardano-mainnet-mirror_7", "cardano-node-measured": [ + "node-measured", "node-measured", "node-process" ], "cardano-node-process": [ + "node-measured", "node-measured", "node-process" ], "cardano-node-snapshot": "cardano-node-snapshot_3", "nixpkgs": [ + "node-measured", "node-measured", "node-process", "nixpkgs" @@ -5045,16 +6541,18 @@ "type": "github" } }, - "membench_7": { + "membench_8": { "inputs": { - "cardano-mainnet-mirror": "cardano-mainnet-mirror_7", + "cardano-mainnet-mirror": "cardano-mainnet-mirror_8", "cardano-node-measured": [ + "node-measured", "node-measured", "node-process", "membench", "cardano-node-snapshot" ], "cardano-node-process": [ + "node-measured", "node-measured", "node-process", "membench", @@ -5062,6 +6560,7 @@ ], "cardano-node-snapshot": "cardano-node-snapshot_4", "nixpkgs": [ + "node-measured", "node-measured", "node-process", "membench", @@ -5084,10 +6583,11 @@ "type": "github" } }, - "membench_8": { + "membench_9": { "inputs": { - "cardano-mainnet-mirror": "cardano-mainnet-mirror_8", + "cardano-mainnet-mirror": "cardano-mainnet-mirror_9", "cardano-node-measured": [ + "node-measured", "node-measured", "node-process", "membench", @@ -5096,6 +6596,7 @@ "cardano-node-snapshot" ], "cardano-node-process": [ + "node-measured", "node-measured", "node-process", "membench", @@ -5104,6 +6605,7 @@ "cardano-node-snapshot" ], "cardano-node-snapshot": [ + "node-measured", "node-measured", "node-process", "membench", @@ -5112,6 +6614,7 @@ "cardano-node-snapshot" ], "nixpkgs": [ + "node-measured", "node-measured", "node-process", "membench", @@ -5136,68 +6639,99 @@ "type": "github" } }, - "membench_9": { + "nix": { "inputs": { - "cardano-mainnet-mirror": "cardano-mainnet-mirror_9", - "cardano-node-measured": [ - "node-measured", - "node-snapshot" - ], - "cardano-node-process": [ - "node-measured", - "node-snapshot" - ], - "cardano-node-snapshot": "cardano-node-snapshot_5", - "nixpkgs": [ - "node-measured", - "node-snapshot", - "nixpkgs" - ], - "ouroboros-network": "ouroboros-network_8" + "lowdown-src": "lowdown-src", + "nixpkgs": "nixpkgs_2", + "nixpkgs-regression": "nixpkgs-regression" }, "locked": { - "lastModified": 1645070579, - "narHash": "sha256-AxL6tCOnzYnE6OquoFzj+X1bLDr1PQx3d8/vXm+rbfA=", + "lastModified": 1643066034, + "narHash": "sha256-xEPeMcNJVOeZtoN+d+aRwolpW8mFSEQx76HTRdlhPhg=", + "owner": "NixOS", + "repo": "nix", + "rev": "a1cd7e58606a41fcf62bf8637804cf8306f17f62", + "type": "github" + }, + "original": { + "owner": "NixOS", + "ref": "2.6.0", + "repo": "nix", + "type": "github" + } + }, + "nix-tools": { + "flake": false, + "locked": { + "lastModified": 1636018067, + "narHash": "sha256-ng306fkuwr6V/malWtt3979iAC4yMVDDH2ViwYB6sQE=", "owner": "input-output-hk", - "repo": "cardano-memory-benchmark", - "rev": "65643e000186de1335e24ec89159db8ba85e1c1a", + "repo": "nix-tools", + "rev": "ed5bd7215292deba55d6ab7a4e8c21f8b1564dda", "type": "github" }, "original": { "owner": "input-output-hk", - "repo": "cardano-memory-benchmark", + "repo": "nix-tools", "type": "github" } }, - "nix": { - "inputs": { - "lowdown-src": "lowdown-src", - "nixpkgs": "nixpkgs_2", - "nixpkgs-regression": "nixpkgs-regression" + "nix-tools_10": { + "flake": false, + "locked": { + "lastModified": 1636018067, + "narHash": "sha256-ng306fkuwr6V/malWtt3979iAC4yMVDDH2ViwYB6sQE=", + "owner": "input-output-hk", + "repo": "nix-tools", + "rev": "ed5bd7215292deba55d6ab7a4e8c21f8b1564dda", + "type": "github" + }, + "original": { + "owner": "input-output-hk", + "repo": "nix-tools", + "type": "github" + } + }, + "nix-tools_11": { + "flake": false, + "locked": { + "lastModified": 1636018067, + "narHash": "sha256-ng306fkuwr6V/malWtt3979iAC4yMVDDH2ViwYB6sQE=", + "owner": "input-output-hk", + "repo": "nix-tools", + "rev": "ed5bd7215292deba55d6ab7a4e8c21f8b1564dda", + "type": "github" }, + "original": { + "owner": "input-output-hk", + "repo": "nix-tools", + "type": "github" + } + }, + "nix-tools_12": { + "flake": false, "locked": { - "lastModified": 1643066034, - "narHash": "sha256-xEPeMcNJVOeZtoN+d+aRwolpW8mFSEQx76HTRdlhPhg=", - "owner": "NixOS", - "repo": "nix", - "rev": "a1cd7e58606a41fcf62bf8637804cf8306f17f62", + "lastModified": 1636018067, + "narHash": "sha256-ng306fkuwr6V/malWtt3979iAC4yMVDDH2ViwYB6sQE=", + "owner": "input-output-hk", + "repo": "nix-tools", + "rev": "ed5bd7215292deba55d6ab7a4e8c21f8b1564dda", "type": "github" }, "original": { - "owner": "NixOS", - "ref": "2.6.0", - "repo": "nix", + "owner": "input-output-hk", + "repo": "nix-tools", "type": "github" } }, - "nix-tools": { + "nix-tools_13": { "flake": false, "locked": { - "lastModified": 1644395812, - "narHash": "sha256-BVFk/BEsTLq5MMZvdy3ZYHKfaS3dHrsKh4+tb5t5b58=", + "lastModified": 1636018067, + "narHash": "sha256-ng306fkuwr6V/malWtt3979iAC4yMVDDH2ViwYB6sQE=", "owner": "input-output-hk", "repo": "nix-tools", - "rev": "d847c63b99bbec78bf83be2a61dc9f09b8a9ccc1", + "rev": "ed5bd7215292deba55d6ab7a4e8c21f8b1564dda", "type": "github" }, "original": { @@ -5206,7 +6740,7 @@ "type": "github" } }, - "nix-tools_10": { + "nix-tools_14": { "flake": false, "locked": { "lastModified": 1636018067, @@ -5222,7 +6756,7 @@ "type": "github" } }, - "nix-tools_11": { + "nix-tools_15": { "flake": false, "locked": { "lastModified": 1636018067, @@ -5238,7 +6772,7 @@ "type": "github" } }, - "nix-tools_12": { + "nix-tools_16": { "flake": false, "locked": { "lastModified": 1636018067, @@ -5254,7 +6788,7 @@ "type": "github" } }, - "nix-tools_13": { + "nix-tools_17": { "flake": false, "locked": { "lastModified": 1636018067, @@ -5270,7 +6804,7 @@ "type": "github" } }, - "nix-tools_14": { + "nix-tools_18": { "flake": false, "locked": { "lastModified": 1636018067, @@ -5286,7 +6820,7 @@ "type": "github" } }, - "nix-tools_15": { + "nix-tools_19": { "flake": false, "locked": { "lastModified": 1636018067, @@ -5302,7 +6836,23 @@ "type": "github" } }, - "nix-tools_16": { + "nix-tools_2": { + "flake": false, + "locked": { + "lastModified": 1649424170, + "narHash": "sha256-XgKXWispvv5RCvZzPb+p7e6Hy3LMuRjafKMl7kXzxGw=", + "owner": "input-output-hk", + "repo": "nix-tools", + "rev": "e109c94016e3b6e0db7ed413c793e2d4bdb24aa7", + "type": "github" + }, + "original": { + "owner": "input-output-hk", + "repo": "nix-tools", + "type": "github" + } + }, + "nix-tools_20": { "flake": false, "locked": { "lastModified": 1636018067, @@ -5318,7 +6868,7 @@ "type": "github" } }, - "nix-tools_17": { + "nix-tools_21": { "flake": false, "locked": { "lastModified": 1636018067, @@ -5334,7 +6884,7 @@ "type": "github" } }, - "nix-tools_18": { + "nix-tools_22": { "flake": false, "locked": { "lastModified": 1636018067, @@ -5350,14 +6900,14 @@ "type": "github" } }, - "nix-tools_2": { + "nix-tools_23": { "flake": false, "locked": { - "lastModified": 1649424170, - "narHash": "sha256-XgKXWispvv5RCvZzPb+p7e6Hy3LMuRjafKMl7kXzxGw=", + "lastModified": 1636018067, + "narHash": "sha256-ng306fkuwr6V/malWtt3979iAC4yMVDDH2ViwYB6sQE=", "owner": "input-output-hk", "repo": "nix-tools", - "rev": "e109c94016e3b6e0db7ed413c793e2d4bdb24aa7", + "rev": "ed5bd7215292deba55d6ab7a4e8c21f8b1564dda", "type": "github" }, "original": { @@ -5385,11 +6935,11 @@ "nix-tools_4": { "flake": false, "locked": { - "lastModified": 1636018067, - "narHash": "sha256-ng306fkuwr6V/malWtt3979iAC4yMVDDH2ViwYB6sQE=", + "lastModified": 1649424170, + "narHash": "sha256-XgKXWispvv5RCvZzPb+p7e6Hy3LMuRjafKMl7kXzxGw=", "owner": "input-output-hk", "repo": "nix-tools", - "rev": "ed5bd7215292deba55d6ab7a4e8c21f8b1564dda", + "rev": "e109c94016e3b6e0db7ed413c793e2d4bdb24aa7", "type": "github" }, "original": { @@ -5401,11 +6951,11 @@ "nix-tools_5": { "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": { @@ -5479,6 +7029,22 @@ } }, "nixTools": { + "flake": false, + "locked": { + "lastModified": 1649424170, + "narHash": "sha256-XgKXWispvv5RCvZzPb+p7e6Hy3LMuRjafKMl7kXzxGw=", + "owner": "input-output-hk", + "repo": "nix-tools", + "rev": "e109c94016e3b6e0db7ed413c793e2d4bdb24aa7", + "type": "github" + }, + "original": { + "owner": "input-output-hk", + "repo": "nix-tools", + "type": "github" + } + }, + "nixTools_2": { "flake": false, "locked": { "lastModified": 1644395812, @@ -5497,7 +7063,7 @@ "nix_2": { "inputs": { "lowdown-src": "lowdown-src_2", - "nixpkgs": "nixpkgs_3", + "nixpkgs": "nixpkgs_4", "nixpkgs-regression": "nixpkgs-regression_2" }, "locked": { @@ -5536,6 +7102,27 @@ "type": "github" } }, + "nix_4": { + "inputs": { + "lowdown-src": "lowdown-src_4", + "nixpkgs": "nixpkgs_7", + "nixpkgs-regression": "nixpkgs-regression_4" + }, + "locked": { + "lastModified": 1643066034, + "narHash": "sha256-xEPeMcNJVOeZtoN+d+aRwolpW8mFSEQx76HTRdlhPhg=", + "owner": "NixOS", + "repo": "nix", + "rev": "a1cd7e58606a41fcf62bf8637804cf8306f17f62", + "type": "github" + }, + "original": { + "owner": "NixOS", + "ref": "2.6.0", + "repo": "nix", + "type": "github" + } + }, "nixpkgs": { "locked": { "lastModified": 1642336556, @@ -5710,6 +7297,22 @@ "type": "github" } }, + "nixpkgs-2003_19": { + "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_2": { "locked": { "lastModified": 1620055814, @@ -5726,6 +7329,70 @@ "type": "github" } }, + "nixpkgs-2003_20": { + "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_21": { + "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_22": { + "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_23": { + "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_3": { "locked": { "lastModified": 1620055814, @@ -5840,11 +7507,91 @@ }, "nixpkgs-2105": { "locked": { - "lastModified": 1642244250, - "narHash": "sha256-vWpUEqQdVP4srj+/YLJRTN9vjpTs4je0cdWKXPbDItc=", + "lastModified": 1640283157, + "narHash": "sha256-6Ddfop+rKE+Gl9Tjp9YIrkfoYPzb8F80ergdjcq3/MY=", "owner": "NixOS", "repo": "nixpkgs", - "rev": "0fd9ee1aa36ce865ad273f4f07fdc093adeb5c00", + "rev": "dde1557825c5644c869c5efc7448dc03722a8f09", + "type": "github" + }, + "original": { + "owner": "NixOS", + "ref": "nixpkgs-21.05-darwin", + "repo": "nixpkgs", + "type": "github" + } + }, + "nixpkgs-2105_10": { + "locked": { + "lastModified": 1630481079, + "narHash": "sha256-leWXLchbAbqOlLT6tju631G40SzQWPqaAXQG3zH1Imw=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "110a2c9ebbf5d4a94486854f18a37a938cfacbbb", + "type": "github" + }, + "original": { + "owner": "NixOS", + "ref": "nixpkgs-21.05-darwin", + "repo": "nixpkgs", + "type": "github" + } + }, + "nixpkgs-2105_11": { + "locked": { + "lastModified": 1640283157, + "narHash": "sha256-6Ddfop+rKE+Gl9Tjp9YIrkfoYPzb8F80ergdjcq3/MY=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "dde1557825c5644c869c5efc7448dc03722a8f09", + "type": "github" + }, + "original": { + "owner": "NixOS", + "ref": "nixpkgs-21.05-darwin", + "repo": "nixpkgs", + "type": "github" + } + }, + "nixpkgs-2105_12": { + "locked": { + "lastModified": 1640283157, + "narHash": "sha256-6Ddfop+rKE+Gl9Tjp9YIrkfoYPzb8F80ergdjcq3/MY=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "dde1557825c5644c869c5efc7448dc03722a8f09", + "type": "github" + }, + "original": { + "owner": "NixOS", + "ref": "nixpkgs-21.05-darwin", + "repo": "nixpkgs", + "type": "github" + } + }, + "nixpkgs-2105_13": { + "locked": { + "lastModified": 1640283157, + "narHash": "sha256-6Ddfop+rKE+Gl9Tjp9YIrkfoYPzb8F80ergdjcq3/MY=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "dde1557825c5644c869c5efc7448dc03722a8f09", + "type": "github" + }, + "original": { + "owner": "NixOS", + "ref": "nixpkgs-21.05-darwin", + "repo": "nixpkgs", + "type": "github" + } + }, + "nixpkgs-2105_14": { + "locked": { + "lastModified": 1630481079, + "narHash": "sha256-leWXLchbAbqOlLT6tju631G40SzQWPqaAXQG3zH1Imw=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "110a2c9ebbf5d4a94486854f18a37a938cfacbbb", "type": "github" }, "original": { @@ -5854,7 +7601,7 @@ "type": "github" } }, - "nixpkgs-2105_10": { + "nixpkgs-2105_15": { "locked": { "lastModified": 1640283157, "narHash": "sha256-6Ddfop+rKE+Gl9Tjp9YIrkfoYPzb8F80ergdjcq3/MY=", @@ -5870,7 +7617,7 @@ "type": "github" } }, - "nixpkgs-2105_11": { + "nixpkgs-2105_16": { "locked": { "lastModified": 1640283157, "narHash": "sha256-6Ddfop+rKE+Gl9Tjp9YIrkfoYPzb8F80ergdjcq3/MY=", @@ -5886,7 +7633,7 @@ "type": "github" } }, - "nixpkgs-2105_12": { + "nixpkgs-2105_17": { "locked": { "lastModified": 1630481079, "narHash": "sha256-leWXLchbAbqOlLT6tju631G40SzQWPqaAXQG3zH1Imw=", @@ -5902,7 +7649,7 @@ "type": "github" } }, - "nixpkgs-2105_13": { + "nixpkgs-2105_18": { "locked": { "lastModified": 1640283157, "narHash": "sha256-6Ddfop+rKE+Gl9Tjp9YIrkfoYPzb8F80ergdjcq3/MY=", @@ -5918,7 +7665,7 @@ "type": "github" } }, - "nixpkgs-2105_14": { + "nixpkgs-2105_19": { "locked": { "lastModified": 1640283157, "narHash": "sha256-6Ddfop+rKE+Gl9Tjp9YIrkfoYPzb8F80ergdjcq3/MY=", @@ -5934,7 +7681,23 @@ "type": "github" } }, - "nixpkgs-2105_15": { + "nixpkgs-2105_2": { + "locked": { + "lastModified": 1645296114, + "narHash": "sha256-y53N7TyIkXsjMpOG7RhvqJFGDacLs9HlyHeSTBioqYU=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "530a53dcbc9437363471167a5e4762c5fcfa34a1", + "type": "github" + }, + "original": { + "owner": "NixOS", + "ref": "nixpkgs-21.05-darwin", + "repo": "nixpkgs", + "type": "github" + } + }, + "nixpkgs-2105_20": { "locked": { "lastModified": 1630481079, "narHash": "sha256-leWXLchbAbqOlLT6tju631G40SzQWPqaAXQG3zH1Imw=", @@ -5950,7 +7713,7 @@ "type": "github" } }, - "nixpkgs-2105_16": { + "nixpkgs-2105_21": { "locked": { "lastModified": 1640283157, "narHash": "sha256-6Ddfop+rKE+Gl9Tjp9YIrkfoYPzb8F80ergdjcq3/MY=", @@ -5966,7 +7729,7 @@ "type": "github" } }, - "nixpkgs-2105_17": { + "nixpkgs-2105_22": { "locked": { "lastModified": 1640283157, "narHash": "sha256-6Ddfop+rKE+Gl9Tjp9YIrkfoYPzb8F80ergdjcq3/MY=", @@ -5982,7 +7745,7 @@ "type": "github" } }, - "nixpkgs-2105_18": { + "nixpkgs-2105_23": { "locked": { "lastModified": 1630481079, "narHash": "sha256-leWXLchbAbqOlLT6tju631G40SzQWPqaAXQG3zH1Imw=", @@ -5998,7 +7761,23 @@ "type": "github" } }, - "nixpkgs-2105_2": { + "nixpkgs-2105_3": { + "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_4": { "locked": { "lastModified": 1645296114, "narHash": "sha256-y53N7TyIkXsjMpOG7RhvqJFGDacLs9HlyHeSTBioqYU=", @@ -6014,7 +7793,7 @@ "type": "github" } }, - "nixpkgs-2105_3": { + "nixpkgs-2105_5": { "locked": { "lastModified": 1642244250, "narHash": "sha256-vWpUEqQdVP4srj+/YLJRTN9vjpTs4je0cdWKXPbDItc=", @@ -6030,7 +7809,7 @@ "type": "github" } }, - "nixpkgs-2105_4": { + "nixpkgs-2105_6": { "locked": { "lastModified": 1640283157, "narHash": "sha256-6Ddfop+rKE+Gl9Tjp9YIrkfoYPzb8F80ergdjcq3/MY=", @@ -6046,7 +7825,7 @@ "type": "github" } }, - "nixpkgs-2105_5": { + "nixpkgs-2105_7": { "locked": { "lastModified": 1640283157, "narHash": "sha256-6Ddfop+rKE+Gl9Tjp9YIrkfoYPzb8F80ergdjcq3/MY=", @@ -6062,7 +7841,7 @@ "type": "github" } }, - "nixpkgs-2105_6": { + "nixpkgs-2105_8": { "locked": { "lastModified": 1640283157, "narHash": "sha256-6Ddfop+rKE+Gl9Tjp9YIrkfoYPzb8F80ergdjcq3/MY=", @@ -6078,7 +7857,7 @@ "type": "github" } }, - "nixpkgs-2105_7": { + "nixpkgs-2105_9": { "locked": { "lastModified": 1640283157, "narHash": "sha256-6Ddfop+rKE+Gl9Tjp9YIrkfoYPzb8F80ergdjcq3/MY=", @@ -6094,45 +7873,45 @@ "type": "github" } }, - "nixpkgs-2105_8": { + "nixpkgs-2111": { "locked": { - "lastModified": 1630481079, - "narHash": "sha256-leWXLchbAbqOlLT6tju631G40SzQWPqaAXQG3zH1Imw=", + "lastModified": 1640283207, + "narHash": "sha256-SCwl7ZnCfMDsuSYvwIroiAlk7n33bW8HFfY8NvKhcPA=", "owner": "NixOS", "repo": "nixpkgs", - "rev": "110a2c9ebbf5d4a94486854f18a37a938cfacbbb", + "rev": "64c7e3388bbd9206e437713351e814366e0c3284", "type": "github" }, "original": { "owner": "NixOS", - "ref": "nixpkgs-21.05-darwin", + "ref": "nixpkgs-21.11-darwin", "repo": "nixpkgs", "type": "github" } }, - "nixpkgs-2105_9": { + "nixpkgs-2111_10": { "locked": { - "lastModified": 1640283157, - "narHash": "sha256-6Ddfop+rKE+Gl9Tjp9YIrkfoYPzb8F80ergdjcq3/MY=", + "lastModified": 1638410074, + "narHash": "sha256-MQYI4k4XkoTzpeRjq5wl+1NShsl1CKq8MISFuZ81sWs=", "owner": "NixOS", "repo": "nixpkgs", - "rev": "dde1557825c5644c869c5efc7448dc03722a8f09", + "rev": "5b80f23502f8e902612a8c631dfce383e1c56596", "type": "github" }, "original": { "owner": "NixOS", - "ref": "nixpkgs-21.05-darwin", + "ref": "nixpkgs-21.11-darwin", "repo": "nixpkgs", "type": "github" } }, - "nixpkgs-2111": { + "nixpkgs-2111_11": { "locked": { - "lastModified": 1644510859, - "narHash": "sha256-xjpVvL5ecbyi0vxtVl/Fh9bwGlMbw3S06zE5nUzFB8A=", + "lastModified": 1640283207, + "narHash": "sha256-SCwl7ZnCfMDsuSYvwIroiAlk7n33bW8HFfY8NvKhcPA=", "owner": "NixOS", "repo": "nixpkgs", - "rev": "0d1d5d7e3679fec9d07f2eb804d9f9fdb98378d3", + "rev": "64c7e3388bbd9206e437713351e814366e0c3284", "type": "github" }, "original": { @@ -6142,7 +7921,7 @@ "type": "github" } }, - "nixpkgs-2111_10": { + "nixpkgs-2111_12": { "locked": { "lastModified": 1640283207, "narHash": "sha256-SCwl7ZnCfMDsuSYvwIroiAlk7n33bW8HFfY8NvKhcPA=", @@ -6158,7 +7937,7 @@ "type": "github" } }, - "nixpkgs-2111_11": { + "nixpkgs-2111_13": { "locked": { "lastModified": 1640283207, "narHash": "sha256-SCwl7ZnCfMDsuSYvwIroiAlk7n33bW8HFfY8NvKhcPA=", @@ -6174,7 +7953,7 @@ "type": "github" } }, - "nixpkgs-2111_12": { + "nixpkgs-2111_14": { "locked": { "lastModified": 1638410074, "narHash": "sha256-MQYI4k4XkoTzpeRjq5wl+1NShsl1CKq8MISFuZ81sWs=", @@ -6190,7 +7969,7 @@ "type": "github" } }, - "nixpkgs-2111_13": { + "nixpkgs-2111_15": { "locked": { "lastModified": 1640283207, "narHash": "sha256-SCwl7ZnCfMDsuSYvwIroiAlk7n33bW8HFfY8NvKhcPA=", @@ -6206,7 +7985,7 @@ "type": "github" } }, - "nixpkgs-2111_14": { + "nixpkgs-2111_16": { "locked": { "lastModified": 1640283207, "narHash": "sha256-SCwl7ZnCfMDsuSYvwIroiAlk7n33bW8HFfY8NvKhcPA=", @@ -6222,7 +8001,7 @@ "type": "github" } }, - "nixpkgs-2111_15": { + "nixpkgs-2111_17": { "locked": { "lastModified": 1638410074, "narHash": "sha256-MQYI4k4XkoTzpeRjq5wl+1NShsl1CKq8MISFuZ81sWs=", @@ -6238,7 +8017,7 @@ "type": "github" } }, - "nixpkgs-2111_16": { + "nixpkgs-2111_18": { "locked": { "lastModified": 1640283207, "narHash": "sha256-SCwl7ZnCfMDsuSYvwIroiAlk7n33bW8HFfY8NvKhcPA=", @@ -6254,7 +8033,7 @@ "type": "github" } }, - "nixpkgs-2111_17": { + "nixpkgs-2111_19": { "locked": { "lastModified": 1640283207, "narHash": "sha256-SCwl7ZnCfMDsuSYvwIroiAlk7n33bW8HFfY8NvKhcPA=", @@ -6270,7 +8049,23 @@ "type": "github" } }, - "nixpkgs-2111_18": { + "nixpkgs-2111_2": { + "locked": { + "lastModified": 1648744337, + "narHash": "sha256-bYe1dFJAXovjqiaPKrmAbSBEK5KUkgwVaZcTbSoJ7hg=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "0a58eebd8ec65ffdef2ce9562784123a73922052", + "type": "github" + }, + "original": { + "owner": "NixOS", + "ref": "nixpkgs-21.11-darwin", + "repo": "nixpkgs", + "type": "github" + } + }, + "nixpkgs-2111_20": { "locked": { "lastModified": 1638410074, "narHash": "sha256-MQYI4k4XkoTzpeRjq5wl+1NShsl1CKq8MISFuZ81sWs=", @@ -6286,7 +8081,71 @@ "type": "github" } }, - "nixpkgs-2111_2": { + "nixpkgs-2111_21": { + "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_22": { + "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_23": { + "locked": { + "lastModified": 1638410074, + "narHash": "sha256-MQYI4k4XkoTzpeRjq5wl+1NShsl1CKq8MISFuZ81sWs=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "5b80f23502f8e902612a8c631dfce383e1c56596", + "type": "github" + }, + "original": { + "owner": "NixOS", + "ref": "nixpkgs-21.11-darwin", + "repo": "nixpkgs", + "type": "github" + } + }, + "nixpkgs-2111_3": { + "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_4": { "locked": { "lastModified": 1648744337, "narHash": "sha256-bYe1dFJAXovjqiaPKrmAbSBEK5KUkgwVaZcTbSoJ7hg=", @@ -6302,7 +8161,7 @@ "type": "github" } }, - "nixpkgs-2111_3": { + "nixpkgs-2111_5": { "locked": { "lastModified": 1644510859, "narHash": "sha256-xjpVvL5ecbyi0vxtVl/Fh9bwGlMbw3S06zE5nUzFB8A=", @@ -6318,7 +8177,7 @@ "type": "github" } }, - "nixpkgs-2111_4": { + "nixpkgs-2111_6": { "locked": { "lastModified": 1640283207, "narHash": "sha256-SCwl7ZnCfMDsuSYvwIroiAlk7n33bW8HFfY8NvKhcPA=", @@ -6334,7 +8193,7 @@ "type": "github" } }, - "nixpkgs-2111_5": { + "nixpkgs-2111_7": { "locked": { "lastModified": 1640283207, "narHash": "sha256-SCwl7ZnCfMDsuSYvwIroiAlk7n33bW8HFfY8NvKhcPA=", @@ -6350,7 +8209,7 @@ "type": "github" } }, - "nixpkgs-2111_6": { + "nixpkgs-2111_8": { "locked": { "lastModified": 1640283207, "narHash": "sha256-SCwl7ZnCfMDsuSYvwIroiAlk7n33bW8HFfY8NvKhcPA=", @@ -6366,7 +8225,7 @@ "type": "github" } }, - "nixpkgs-2111_7": { + "nixpkgs-2111_9": { "locked": { "lastModified": 1640283207, "narHash": "sha256-SCwl7ZnCfMDsuSYvwIroiAlk7n33bW8HFfY8NvKhcPA=", @@ -6382,90 +8241,153 @@ "type": "github" } }, - "nixpkgs-2111_8": { + "nixpkgs-regression": { "locked": { - "lastModified": 1638410074, - "narHash": "sha256-MQYI4k4XkoTzpeRjq5wl+1NShsl1CKq8MISFuZ81sWs=", + "lastModified": 1643052045, + "narHash": "sha256-uGJ0VXIhWKGXxkeNnq4TvV3CIOkUJ3PAoLZ3HMzNVMw=", "owner": "NixOS", "repo": "nixpkgs", - "rev": "5b80f23502f8e902612a8c631dfce383e1c56596", + "rev": "215d4d0fd80ca5163643b03a33fde804a29cc1e2", + "type": "github" + }, + "original": { + "id": "nixpkgs", + "rev": "215d4d0fd80ca5163643b03a33fde804a29cc1e2", + "type": "indirect" + } + }, + "nixpkgs-regression_2": { + "locked": { + "lastModified": 1643052045, + "narHash": "sha256-uGJ0VXIhWKGXxkeNnq4TvV3CIOkUJ3PAoLZ3HMzNVMw=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "215d4d0fd80ca5163643b03a33fde804a29cc1e2", + "type": "github" + }, + "original": { + "id": "nixpkgs", + "rev": "215d4d0fd80ca5163643b03a33fde804a29cc1e2", + "type": "indirect" + } + }, + "nixpkgs-regression_3": { + "locked": { + "lastModified": 1643052045, + "narHash": "sha256-uGJ0VXIhWKGXxkeNnq4TvV3CIOkUJ3PAoLZ3HMzNVMw=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "215d4d0fd80ca5163643b03a33fde804a29cc1e2", + "type": "github" + }, + "original": { + "id": "nixpkgs", + "rev": "215d4d0fd80ca5163643b03a33fde804a29cc1e2", + "type": "indirect" + } + }, + "nixpkgs-regression_4": { + "locked": { + "lastModified": 1643052045, + "narHash": "sha256-uGJ0VXIhWKGXxkeNnq4TvV3CIOkUJ3PAoLZ3HMzNVMw=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "215d4d0fd80ca5163643b03a33fde804a29cc1e2", + "type": "github" + }, + "original": { + "id": "nixpkgs", + "rev": "215d4d0fd80ca5163643b03a33fde804a29cc1e2", + "type": "indirect" + } + }, + "nixpkgs-unstable": { + "locked": { + "lastModified": 1641285291, + "narHash": "sha256-KYaOBNGar3XWTxTsYPr9P6u74KAqNq0wobEC236U+0c=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "0432195a4b8d68faaa7d3d4b355260a3120aeeae", "type": "github" }, "original": { "owner": "NixOS", - "ref": "nixpkgs-21.11-darwin", + "ref": "nixpkgs-unstable", "repo": "nixpkgs", "type": "github" } }, - "nixpkgs-2111_9": { + "nixpkgs-unstable_10": { "locked": { - "lastModified": 1640283207, - "narHash": "sha256-SCwl7ZnCfMDsuSYvwIroiAlk7n33bW8HFfY8NvKhcPA=", + "lastModified": 1635295995, + "narHash": "sha256-sGYiXjFlxTTMNb4NSkgvX+knOOTipE6gqwPUQpxNF+c=", "owner": "NixOS", "repo": "nixpkgs", - "rev": "64c7e3388bbd9206e437713351e814366e0c3284", + "rev": "22a500a3f87bbce73bd8d777ef920b43a636f018", "type": "github" }, "original": { "owner": "NixOS", - "ref": "nixpkgs-21.11-darwin", + "ref": "nixpkgs-unstable", "repo": "nixpkgs", "type": "github" } }, - "nixpkgs-regression": { + "nixpkgs-unstable_11": { "locked": { - "lastModified": 1643052045, - "narHash": "sha256-uGJ0VXIhWKGXxkeNnq4TvV3CIOkUJ3PAoLZ3HMzNVMw=", + "lastModified": 1641285291, + "narHash": "sha256-KYaOBNGar3XWTxTsYPr9P6u74KAqNq0wobEC236U+0c=", "owner": "NixOS", "repo": "nixpkgs", - "rev": "215d4d0fd80ca5163643b03a33fde804a29cc1e2", + "rev": "0432195a4b8d68faaa7d3d4b355260a3120aeeae", "type": "github" }, "original": { - "id": "nixpkgs", - "rev": "215d4d0fd80ca5163643b03a33fde804a29cc1e2", - "type": "indirect" + "owner": "NixOS", + "ref": "nixpkgs-unstable", + "repo": "nixpkgs", + "type": "github" } }, - "nixpkgs-regression_2": { + "nixpkgs-unstable_12": { "locked": { - "lastModified": 1643052045, - "narHash": "sha256-uGJ0VXIhWKGXxkeNnq4TvV3CIOkUJ3PAoLZ3HMzNVMw=", + "lastModified": 1641285291, + "narHash": "sha256-KYaOBNGar3XWTxTsYPr9P6u74KAqNq0wobEC236U+0c=", "owner": "NixOS", "repo": "nixpkgs", - "rev": "215d4d0fd80ca5163643b03a33fde804a29cc1e2", + "rev": "0432195a4b8d68faaa7d3d4b355260a3120aeeae", "type": "github" }, "original": { - "id": "nixpkgs", - "rev": "215d4d0fd80ca5163643b03a33fde804a29cc1e2", - "type": "indirect" + "owner": "NixOS", + "ref": "nixpkgs-unstable", + "repo": "nixpkgs", + "type": "github" } }, - "nixpkgs-regression_3": { + "nixpkgs-unstable_13": { "locked": { - "lastModified": 1643052045, - "narHash": "sha256-uGJ0VXIhWKGXxkeNnq4TvV3CIOkUJ3PAoLZ3HMzNVMw=", + "lastModified": 1641285291, + "narHash": "sha256-KYaOBNGar3XWTxTsYPr9P6u74KAqNq0wobEC236U+0c=", "owner": "NixOS", "repo": "nixpkgs", - "rev": "215d4d0fd80ca5163643b03a33fde804a29cc1e2", + "rev": "0432195a4b8d68faaa7d3d4b355260a3120aeeae", "type": "github" }, "original": { - "id": "nixpkgs", - "rev": "215d4d0fd80ca5163643b03a33fde804a29cc1e2", - "type": "indirect" + "owner": "NixOS", + "ref": "nixpkgs-unstable", + "repo": "nixpkgs", + "type": "github" } }, - "nixpkgs-unstable": { + "nixpkgs-unstable_14": { "locked": { - "lastModified": 1644486793, - "narHash": "sha256-EeijR4guVHgVv+JpOX3cQO+1XdrkJfGmiJ9XVsVU530=", + "lastModified": 1635295995, + "narHash": "sha256-sGYiXjFlxTTMNb4NSkgvX+knOOTipE6gqwPUQpxNF+c=", "owner": "NixOS", "repo": "nixpkgs", - "rev": "1882c6b7368fd284ad01b0a5b5601ef136321292", + "rev": "22a500a3f87bbce73bd8d777ef920b43a636f018", "type": "github" }, "original": { @@ -6475,7 +8397,7 @@ "type": "github" } }, - "nixpkgs-unstable_10": { + "nixpkgs-unstable_15": { "locked": { "lastModified": 1641285291, "narHash": "sha256-KYaOBNGar3XWTxTsYPr9P6u74KAqNq0wobEC236U+0c=", @@ -6491,7 +8413,7 @@ "type": "github" } }, - "nixpkgs-unstable_11": { + "nixpkgs-unstable_16": { "locked": { "lastModified": 1641285291, "narHash": "sha256-KYaOBNGar3XWTxTsYPr9P6u74KAqNq0wobEC236U+0c=", @@ -6507,7 +8429,7 @@ "type": "github" } }, - "nixpkgs-unstable_12": { + "nixpkgs-unstable_17": { "locked": { "lastModified": 1635295995, "narHash": "sha256-sGYiXjFlxTTMNb4NSkgvX+knOOTipE6gqwPUQpxNF+c=", @@ -6523,7 +8445,7 @@ "type": "github" } }, - "nixpkgs-unstable_13": { + "nixpkgs-unstable_18": { "locked": { "lastModified": 1641285291, "narHash": "sha256-KYaOBNGar3XWTxTsYPr9P6u74KAqNq0wobEC236U+0c=", @@ -6539,7 +8461,7 @@ "type": "github" } }, - "nixpkgs-unstable_14": { + "nixpkgs-unstable_19": { "locked": { "lastModified": 1641285291, "narHash": "sha256-KYaOBNGar3XWTxTsYPr9P6u74KAqNq0wobEC236U+0c=", @@ -6555,13 +8477,13 @@ "type": "github" } }, - "nixpkgs-unstable_15": { + "nixpkgs-unstable_2": { "locked": { - "lastModified": 1635295995, - "narHash": "sha256-sGYiXjFlxTTMNb4NSkgvX+knOOTipE6gqwPUQpxNF+c=", + "lastModified": 1648219316, + "narHash": "sha256-Ctij+dOi0ZZIfX5eMhgwugfvB+WZSrvVNAyAuANOsnQ=", "owner": "NixOS", "repo": "nixpkgs", - "rev": "22a500a3f87bbce73bd8d777ef920b43a636f018", + "rev": "30d3d79b7d3607d56546dd2a6b49e156ba0ec634", "type": "github" }, "original": { @@ -6571,13 +8493,13 @@ "type": "github" } }, - "nixpkgs-unstable_16": { + "nixpkgs-unstable_20": { "locked": { - "lastModified": 1641285291, - "narHash": "sha256-KYaOBNGar3XWTxTsYPr9P6u74KAqNq0wobEC236U+0c=", + "lastModified": 1635295995, + "narHash": "sha256-sGYiXjFlxTTMNb4NSkgvX+knOOTipE6gqwPUQpxNF+c=", "owner": "NixOS", "repo": "nixpkgs", - "rev": "0432195a4b8d68faaa7d3d4b355260a3120aeeae", + "rev": "22a500a3f87bbce73bd8d777ef920b43a636f018", "type": "github" }, "original": { @@ -6587,7 +8509,7 @@ "type": "github" } }, - "nixpkgs-unstable_17": { + "nixpkgs-unstable_21": { "locked": { "lastModified": 1641285291, "narHash": "sha256-KYaOBNGar3XWTxTsYPr9P6u74KAqNq0wobEC236U+0c=", @@ -6603,13 +8525,13 @@ "type": "github" } }, - "nixpkgs-unstable_18": { + "nixpkgs-unstable_22": { "locked": { - "lastModified": 1635295995, - "narHash": "sha256-sGYiXjFlxTTMNb4NSkgvX+knOOTipE6gqwPUQpxNF+c=", + "lastModified": 1641285291, + "narHash": "sha256-KYaOBNGar3XWTxTsYPr9P6u74KAqNq0wobEC236U+0c=", "owner": "NixOS", "repo": "nixpkgs", - "rev": "22a500a3f87bbce73bd8d777ef920b43a636f018", + "rev": "0432195a4b8d68faaa7d3d4b355260a3120aeeae", "type": "github" }, "original": { @@ -6619,13 +8541,13 @@ "type": "github" } }, - "nixpkgs-unstable_2": { + "nixpkgs-unstable_23": { "locked": { - "lastModified": 1648219316, - "narHash": "sha256-Ctij+dOi0ZZIfX5eMhgwugfvB+WZSrvVNAyAuANOsnQ=", + "lastModified": 1635295995, + "narHash": "sha256-sGYiXjFlxTTMNb4NSkgvX+knOOTipE6gqwPUQpxNF+c=", "owner": "NixOS", "repo": "nixpkgs", - "rev": "30d3d79b7d3607d56546dd2a6b49e156ba0ec634", + "rev": "22a500a3f87bbce73bd8d777ef920b43a636f018", "type": "github" }, "original": { @@ -6653,11 +8575,11 @@ }, "nixpkgs-unstable_4": { "locked": { - "lastModified": 1641285291, - "narHash": "sha256-KYaOBNGar3XWTxTsYPr9P6u74KAqNq0wobEC236U+0c=", + "lastModified": 1648219316, + "narHash": "sha256-Ctij+dOi0ZZIfX5eMhgwugfvB+WZSrvVNAyAuANOsnQ=", "owner": "NixOS", "repo": "nixpkgs", - "rev": "0432195a4b8d68faaa7d3d4b355260a3120aeeae", + "rev": "30d3d79b7d3607d56546dd2a6b49e156ba0ec634", "type": "github" }, "original": { @@ -6669,11 +8591,11 @@ }, "nixpkgs-unstable_5": { "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": { @@ -6717,11 +8639,11 @@ }, "nixpkgs-unstable_8": { "locked": { - "lastModified": 1635295995, - "narHash": "sha256-sGYiXjFlxTTMNb4NSkgvX+knOOTipE6gqwPUQpxNF+c=", + "lastModified": 1641285291, + "narHash": "sha256-KYaOBNGar3XWTxTsYPr9P6u74KAqNq0wobEC236U+0c=", "owner": "NixOS", "repo": "nixpkgs", - "rev": "22a500a3f87bbce73bd8d777ef920b43a636f018", + "rev": "0432195a4b8d68faaa7d3d4b355260a3120aeeae", "type": "github" }, "original": { @@ -6831,22 +8753,63 @@ "type": "indirect" } }, - "nixpkgs_2": { + "nixpkgs_16": { "locked": { - "lastModified": 1632864508, - "narHash": "sha256-d127FIvGR41XbVRDPVvozUPQ/uRHbHwvfyKHwEt5xFM=", + "lastModified": 1642336556, + "narHash": "sha256-QSPPbFEwy0T0DrIuSzAACkaANPQaR1lZR/nHZGz9z04=", "owner": "NixOS", "repo": "nixpkgs", - "rev": "82891b5e2c2359d7e58d08849e4c89511ab94234", + "rev": "f3d9d4bd898cca7d04af2ae4f6ef01f2219df3d6", "type": "github" }, "original": { "id": "nixpkgs", - "ref": "nixos-21.05-small", "type": "indirect" } }, - "nixpkgs_3": { + "nixpkgs_17": { + "locked": { + "lastModified": 1642336556, + "narHash": "sha256-QSPPbFEwy0T0DrIuSzAACkaANPQaR1lZR/nHZGz9z04=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "f3d9d4bd898cca7d04af2ae4f6ef01f2219df3d6", + "type": "github" + }, + "original": { + "id": "nixpkgs", + "type": "indirect" + } + }, + "nixpkgs_18": { + "locked": { + "lastModified": 1642336556, + "narHash": "sha256-QSPPbFEwy0T0DrIuSzAACkaANPQaR1lZR/nHZGz9z04=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "f3d9d4bd898cca7d04af2ae4f6ef01f2219df3d6", + "type": "github" + }, + "original": { + "id": "nixpkgs", + "type": "indirect" + } + }, + "nixpkgs_19": { + "locked": { + "lastModified": 1642336556, + "narHash": "sha256-QSPPbFEwy0T0DrIuSzAACkaANPQaR1lZR/nHZGz9z04=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "f3d9d4bd898cca7d04af2ae4f6ef01f2219df3d6", + "type": "github" + }, + "original": { + "id": "nixpkgs", + "type": "indirect" + } + }, + "nixpkgs_2": { "locked": { "lastModified": 1632864508, "narHash": "sha256-d127FIvGR41XbVRDPVvozUPQ/uRHbHwvfyKHwEt5xFM=", @@ -6861,7 +8824,7 @@ "type": "indirect" } }, - "nixpkgs_4": { + "nixpkgs_3": { "locked": { "lastModified": 1642336556, "narHash": "sha256-QSPPbFEwy0T0DrIuSzAACkaANPQaR1lZR/nHZGz9z04=", @@ -6875,6 +8838,21 @@ "type": "indirect" } }, + "nixpkgs_4": { + "locked": { + "lastModified": 1632864508, + "narHash": "sha256-d127FIvGR41XbVRDPVvozUPQ/uRHbHwvfyKHwEt5xFM=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "82891b5e2c2359d7e58d08849e4c89511ab94234", + "type": "github" + }, + "original": { + "id": "nixpkgs", + "ref": "nixos-21.05-small", + "type": "indirect" + } + }, "nixpkgs_5": { "locked": { "lastModified": 1632864508, @@ -6906,15 +8884,16 @@ }, "nixpkgs_7": { "locked": { - "lastModified": 1642336556, - "narHash": "sha256-QSPPbFEwy0T0DrIuSzAACkaANPQaR1lZR/nHZGz9z04=", + "lastModified": 1632864508, + "narHash": "sha256-d127FIvGR41XbVRDPVvozUPQ/uRHbHwvfyKHwEt5xFM=", "owner": "NixOS", "repo": "nixpkgs", - "rev": "f3d9d4bd898cca7d04af2ae4f6ef01f2219df3d6", + "rev": "82891b5e2c2359d7e58d08849e4c89511ab94234", "type": "github" }, "original": { "id": "nixpkgs", + "ref": "nixos-21.05-small", "type": "indirect" } }, @@ -6952,22 +8931,63 @@ "cardano-node-workbench": "cardano-node-workbench_3", "customConfig": "customConfig_4", "flake-compat": "flake-compat_4", + "hackageNix": "hackageNix_2", "haskellNix": "haskellNix_4", "hostNixpkgs": [ "node-measured", "nixpkgs" ], "iohkNix": "iohkNix_4", + "nixTools": "nixTools_2", "nixpkgs": [ "node-measured", "haskellNix", - "nixpkgs-2105" + "nixpkgs-unstable" ], "node-measured": "node-measured_2", + "node-process": "node-process_2", + "node-snapshot": "node-snapshot_2", + "plutus-apps": "plutus-apps_5", + "utils": "utils_19" + }, + "locked": { + "lastModified": 1654323094, + "narHash": "sha256-zbmpZeBgUUly8QgR2mrVUN0A+0iLczufNvCCRxAo3GY=", + "owner": "input-output-hk", + "repo": "cardano-node", + "rev": "ec20745f17cb4fa8824fdf341d1412c774bc94b9", + "type": "github" + }, + "original": { + "owner": "input-output-hk", + "repo": "cardano-node", + "type": "github" + } + }, + "node-measured_2": { + "inputs": { + "cardano-mainnet-mirror": "cardano-mainnet-mirror_3", + "cardano-node-workbench": "cardano-node-workbench_5", + "customConfig": "customConfig_6", + "flake-compat": "flake-compat_6", + "haskellNix": "haskellNix_6", + "hostNixpkgs": [ + "node-measured", + "node-measured", + "nixpkgs" + ], + "iohkNix": "iohkNix_6", + "nixpkgs": [ + "node-measured", + "node-measured", + "haskellNix", + "nixpkgs-2105" + ], + "node-measured": "node-measured_3", "node-process": "node-process", "node-snapshot": "node-snapshot", - "plutus-apps": "plutus-apps_3", - "utils": "utils_14" + "plutus-apps": "plutus-apps_4", + "utils": "utils_15" }, "locked": { "lastModified": 1648681325, @@ -6983,27 +9003,29 @@ "type": "github" } }, - "node-measured_2": { + "node-measured_3": { "inputs": { - "cardano-node-workbench": "cardano-node-workbench_5", - "customConfig": "customConfig_5", - "flake-compat": "flake-compat_5", - "haskellNix": "haskellNix_5", + "cardano-node-workbench": "cardano-node-workbench_7", + "customConfig": "customConfig_7", + "flake-compat": "flake-compat_7", + "haskellNix": "haskellNix_7", "hostNixpkgs": [ + "node-measured", "node-measured", "node-measured", "nixpkgs" ], - "iohkNix": "iohkNix_5", - "membench": "membench_3", + "iohkNix": "iohkNix_7", + "membench": "membench_4", "nixpkgs": [ + "node-measured", "node-measured", "node-measured", "haskellNix", "nixpkgs-2105" ], "plutus-example": "plutus-example_2", - "utils": "utils_6" + "utils": "utils_7" }, "locked": { "lastModified": 1647614422, @@ -7019,27 +9041,29 @@ "type": "github" } }, - "node-process": { - "inputs": { - "cardano-node-workbench": "cardano-node-workbench_6", - "customConfig": "customConfig_9", - "flake-compat": "flake-compat_6", - "haskellNix": "haskellNix_9", + "node-process": { + "inputs": { + "cardano-node-workbench": "cardano-node-workbench_8", + "customConfig": "customConfig_11", + "flake-compat": "flake-compat_8", + "haskellNix": "haskellNix_11", "hostNixpkgs": [ + "node-measured", "node-measured", "node-process", "nixpkgs" ], - "iohkNix": "iohkNix_9", - "membench": "membench_6", + "iohkNix": "iohkNix_11", + "membench": "membench_7", "nixpkgs": [ + "node-measured", "node-measured", "node-process", "haskellNix", "nixpkgs-2105" ], "plutus-example": "plutus-example_4", - "utils": "utils_10" + "utils": "utils_11" }, "locked": { "lastModified": 1647614422, @@ -7071,20 +9095,37 @@ "type": "github" } }, + "node-process_3": { + "flake": false, + "locked": { + "lastModified": 1654323094, + "narHash": "sha256-zbmpZeBgUUly8QgR2mrVUN0A+0iLczufNvCCRxAo3GY=", + "owner": "input-output-hk", + "repo": "cardano-node", + "rev": "ec20745f17cb4fa8824fdf341d1412c774bc94b9", + "type": "github" + }, + "original": { + "owner": "input-output-hk", + "repo": "cardano-node", + "type": "github" + } + }, "node-snapshot": { "inputs": { - "customConfig": "customConfig_13", - "haskellNix": "haskellNix_13", - "iohkNix": "iohkNix_13", - "membench": "membench_9", + "customConfig": "customConfig_15", + "haskellNix": "haskellNix_15", + "iohkNix": "iohkNix_15", + "membench": "membench_10", "nixpkgs": [ + "node-measured", "node-measured", "node-snapshot", "haskellNix", "nixpkgs-2105" ], "plutus-example": "plutus-example_5", - "utils": "utils_13" + "utils": "utils_14" }, "locked": { "lastModified": 1645120669, @@ -7103,17 +9144,47 @@ }, "node-snapshot_2": { "inputs": { - "customConfig": "customConfig_16", - "haskellNix": "haskellNix_16", - "iohkNix": "iohkNix_16", - "membench": "membench_11", + "customConfig": "customConfig_18", + "haskellNix": "haskellNix_18", + "iohkNix": "iohkNix_18", + "membench": "membench_12", "nixpkgs": [ + "node-measured", "node-snapshot", "haskellNix", "nixpkgs-2105" ], "plutus-example": "plutus-example_6", - "utils": "utils_17" + "utils": "utils_18" + }, + "locked": { + "lastModified": 1645120669, + "narHash": "sha256-2MKfGsYS5n69+pfqNHb4IH/E95ok1MD7mhEYfUpRcz4=", + "owner": "input-output-hk", + "repo": "cardano-node", + "rev": "7f00e3ea5a61609e19eeeee4af35241571efdf5c", + "type": "github" + }, + "original": { + "owner": "input-output-hk", + "repo": "cardano-node", + "rev": "7f00e3ea5a61609e19eeeee4af35241571efdf5c", + "type": "github" + } + }, + "node-snapshot_3": { + "inputs": { + "customConfig": "customConfig_21", + "haskellNix": "haskellNix_21", + "iohkNix": "iohkNix_21", + "membench": "membench_14", + "nixpkgs": [ + "node-snapshot", + "haskellNix", + "nixpkgs-2105" + ], + "plutus-example": "plutus-example_7", + "utils": "utils_22" }, "locked": { "lastModified": 1645120669, @@ -7300,6 +9371,23 @@ "type": "github" } }, + "old-ghc-nix_19": { + "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_2": { "flake": false, "locked": { @@ -7317,6 +9405,74 @@ "type": "github" } }, + "old-ghc-nix_20": { + "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_21": { + "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_22": { + "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_23": { + "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_3": { "flake": false, "locked": { @@ -7468,6 +9624,38 @@ "type": "github" } }, + "ouroboros-network_11": { + "flake": false, + "locked": { + "lastModified": 1643385024, + "narHash": "sha256-9R4Z1jBsTcEgBHxhzjCJnroEcdfMsTjf8kwg6uPue+Q=", + "owner": "input-output-hk", + "repo": "ouroboros-network", + "rev": "8e97076176d465f5f4f86d5b5596220272630649", + "type": "github" + }, + "original": { + "owner": "input-output-hk", + "repo": "ouroboros-network", + "type": "github" + } + }, + "ouroboros-network_12": { + "flake": false, + "locked": { + "lastModified": 1643385024, + "narHash": "sha256-9R4Z1jBsTcEgBHxhzjCJnroEcdfMsTjf8kwg6uPue+Q=", + "owner": "input-output-hk", + "repo": "ouroboros-network", + "rev": "8e97076176d465f5f4f86d5b5596220272630649", + "type": "github" + }, + "original": { + "owner": "input-output-hk", + "repo": "ouroboros-network", + "type": "github" + } + }, "ouroboros-network_2": { "flake": false, "locked": { @@ -7597,6 +9785,22 @@ } }, "plutus-apps": { + "flake": false, + "locked": { + "lastModified": 1647347289, + "narHash": "sha256-dxKZ1Zvflyt6igYm39POV6X/0giKbfb4U7D1TvevQls=", + "owner": "input-output-hk", + "repo": "plutus-apps", + "rev": "2a40552f4654d695f21783c86e8ae59243ce9dfa", + "type": "github" + }, + "original": { + "owner": "input-output-hk", + "repo": "plutus-apps", + "type": "github" + } + }, + "plutus-apps_2": { "flake": false, "locked": { "lastModified": 1648635956, @@ -7612,7 +9816,7 @@ "type": "github" } }, - "plutus-apps_2": { + "plutus-apps_3": { "flake": false, "locked": { "lastModified": 1648036874, @@ -7628,7 +9832,7 @@ "type": "github" } }, - "plutus-apps_3": { + "plutus-apps_4": { "flake": false, "locked": { "lastModified": 1648036874, @@ -7644,7 +9848,7 @@ "type": "github" } }, - "plutus-apps_4": { + "plutus-apps_5": { "flake": false, "locked": { "lastModified": 1647347289, @@ -7660,12 +9864,29 @@ "type": "github" } }, + "plutus-apps_6": { + "flake": false, + "locked": { + "lastModified": 1654271253, + "narHash": "sha256-GQDPzyVtcbbESmckMvzoTEKa/UWWJH7djh1TWQjzFow=", + "owner": "input-output-hk", + "repo": "plutus-apps", + "rev": "61de89d33340279b8452a0dbb52a87111db87e82", + "type": "github" + }, + "original": { + "owner": "input-output-hk", + "repo": "plutus-apps", + "type": "github" + } + }, "plutus-example": { "inputs": { - "customConfig": "customConfig_8", - "haskellNix": "haskellNix_8", - "iohkNix": "iohkNix_8", + "customConfig": "customConfig_10", + "haskellNix": "haskellNix_10", + "iohkNix": "iohkNix_10", "nixpkgs": [ + "node-measured", "node-measured", "node-measured", "membench", @@ -7674,7 +9895,7 @@ "haskellNix", "nixpkgs-2105" ], - "utils": "utils_4" + "utils": "utils_5" }, "locked": { "lastModified": 1640022647, @@ -7710,10 +9931,11 @@ }, "plutus-example_3": { "inputs": { - "customConfig": "customConfig_12", - "haskellNix": "haskellNix_12", - "iohkNix": "iohkNix_12", + "customConfig": "customConfig_14", + "haskellNix": "haskellNix_14", + "iohkNix": "iohkNix_14", "nixpkgs": [ + "node-measured", "node-measured", "node-process", "membench", @@ -7722,7 +9944,7 @@ "haskellNix", "nixpkgs-2105" ], - "utils": "utils_8" + "utils": "utils_9" }, "locked": { "lastModified": 1640022647, @@ -7751,16 +9973,46 @@ }, "original": { "owner": "input-output-hk", - "ref": "1.33.0", + "ref": "1.33.0", + "repo": "cardano-node", + "type": "github" + } + }, + "plutus-example_5": { + "inputs": { + "customConfig": "customConfig_17", + "haskellNix": "haskellNix_17", + "iohkNix": "iohkNix_17", + "nixpkgs": [ + "node-measured", + "node-measured", + "node-snapshot", + "plutus-example", + "haskellNix", + "nixpkgs-2105" + ], + "utils": "utils_13" + }, + "locked": { + "lastModified": 1640022647, + "narHash": "sha256-M+YnF7Zj/7QK2pu0T75xNVaX0eEeijtBH8yz+jEHIMM=", + "owner": "input-output-hk", + "repo": "cardano-node", + "rev": "814df2c146f5d56f8c35a681fe75e85b905aed5d", + "type": "github" + }, + "original": { + "owner": "input-output-hk", "repo": "cardano-node", + "rev": "814df2c146f5d56f8c35a681fe75e85b905aed5d", "type": "github" } }, - "plutus-example_5": { + "plutus-example_6": { "inputs": { - "customConfig": "customConfig_15", - "haskellNix": "haskellNix_15", - "iohkNix": "iohkNix_15", + "customConfig": "customConfig_20", + "haskellNix": "haskellNix_20", + "iohkNix": "iohkNix_20", "nixpkgs": [ "node-measured", "node-snapshot", @@ -7768,7 +10020,7 @@ "haskellNix", "nixpkgs-2105" ], - "utils": "utils_12" + "utils": "utils_17" }, "locked": { "lastModified": 1640022647, @@ -7785,18 +10037,18 @@ "type": "github" } }, - "plutus-example_6": { + "plutus-example_7": { "inputs": { - "customConfig": "customConfig_18", - "haskellNix": "haskellNix_18", - "iohkNix": "iohkNix_18", + "customConfig": "customConfig_23", + "haskellNix": "haskellNix_23", + "iohkNix": "iohkNix_23", "nixpkgs": [ "node-snapshot", "plutus-example", "haskellNix", "nixpkgs-2105" ], - "utils": "utils_16" + "utils": "utils_21" }, "locked": { "lastModified": 1640022647, @@ -7831,20 +10083,20 @@ "nixpkgs-unstable" ], "node-measured": "node-measured", - "node-process": "node-process_2", - "node-snapshot": "node-snapshot_2", - "plutus-apps": "plutus-apps_4", - "utils": "utils_18" + "node-process": "node-process_3", + "node-snapshot": "node-snapshot_3", + "plutus-apps": "plutus-apps_6", + "utils": "utils_23" } }, "stackage": { "flake": false, "locked": { - "lastModified": 1648603096, - "narHash": "sha256-d1WKzMnk+2ZOXz3YSSqYHrMSHRVSZth+eS/pO5iSwVE=", + "lastModified": 1643073493, + "narHash": "sha256-5cPd1+i/skvJY9vJO1BhVRPcJObqkxDSywBEppDmb1U=", "owner": "input-output-hk", "repo": "stackage.nix", - "rev": "c2bdc5825795d3a6938aa74e598da57591b2e150", + "rev": "48e1188855ca38f3b7e2a8dba5352767a2f0a8f7", "type": "github" }, "original": { @@ -7854,6 +10106,22 @@ } }, "stackage_10": { + "flake": false, + "locked": { + "lastModified": 1639012797, + "narHash": "sha256-hiLyBa5XFBvxD+BcYPKyYd/0dNMccxAuywFNqYtIIvs=", + "owner": "input-output-hk", + "repo": "stackage.nix", + "rev": "9ea6ea359da91c75a71e334b25aa7dc5ddc4b2c6", + "type": "github" + }, + "original": { + "owner": "input-output-hk", + "repo": "stackage.nix", + "type": "github" + } + }, + "stackage_11": { "flake": false, "locked": { "lastModified": 1643073493, @@ -7869,7 +10137,7 @@ "type": "github" } }, - "stackage_11": { + "stackage_12": { "flake": false, "locked": { "lastModified": 1643073493, @@ -7885,7 +10153,23 @@ "type": "github" } }, - "stackage_12": { + "stackage_13": { + "flake": false, + "locked": { + "lastModified": 1643073493, + "narHash": "sha256-5cPd1+i/skvJY9vJO1BhVRPcJObqkxDSywBEppDmb1U=", + "owner": "input-output-hk", + "repo": "stackage.nix", + "rev": "48e1188855ca38f3b7e2a8dba5352767a2f0a8f7", + "type": "github" + }, + "original": { + "owner": "input-output-hk", + "repo": "stackage.nix", + "type": "github" + } + }, + "stackage_14": { "flake": false, "locked": { "lastModified": 1639012797, @@ -7901,7 +10185,7 @@ "type": "github" } }, - "stackage_13": { + "stackage_15": { "flake": false, "locked": { "lastModified": 1643073493, @@ -7917,7 +10201,7 @@ "type": "github" } }, - "stackage_14": { + "stackage_16": { "flake": false, "locked": { "lastModified": 1643073493, @@ -7933,7 +10217,7 @@ "type": "github" } }, - "stackage_15": { + "stackage_17": { "flake": false, "locked": { "lastModified": 1639012797, @@ -7949,7 +10233,7 @@ "type": "github" } }, - "stackage_16": { + "stackage_18": { "flake": false, "locked": { "lastModified": 1643073493, @@ -7965,7 +10249,7 @@ "type": "github" } }, - "stackage_17": { + "stackage_19": { "flake": false, "locked": { "lastModified": 1643073493, @@ -7981,7 +10265,23 @@ "type": "github" } }, - "stackage_18": { + "stackage_2": { + "flake": false, + "locked": { + "lastModified": 1654478255, + "narHash": "sha256-HJdZRznTApwbsOAxjmpLP++vCxuPrWCWvquaFJhMfvs=", + "owner": "input-output-hk", + "repo": "stackage.nix", + "rev": "21b250dcad395664268fc733f0bd832df3cacd07", + "type": "github" + }, + "original": { + "owner": "input-output-hk", + "repo": "stackage.nix", + "type": "github" + } + }, + "stackage_20": { "flake": false, "locked": { "lastModified": 1639012797, @@ -7997,14 +10297,46 @@ "type": "github" } }, - "stackage_2": { + "stackage_21": { "flake": false, "locked": { - "lastModified": 1649639721, - "narHash": "sha256-i/nyHyfpvw6en4phdjLS96DhJI95MVX3KubfUJwDtuU=", + "lastModified": 1643073493, + "narHash": "sha256-5cPd1+i/skvJY9vJO1BhVRPcJObqkxDSywBEppDmb1U=", "owner": "input-output-hk", "repo": "stackage.nix", - "rev": "9d1954e8bf7ce40ce21d59794d19a8d1ddf06cd6", + "rev": "48e1188855ca38f3b7e2a8dba5352767a2f0a8f7", + "type": "github" + }, + "original": { + "owner": "input-output-hk", + "repo": "stackage.nix", + "type": "github" + } + }, + "stackage_22": { + "flake": false, + "locked": { + "lastModified": 1643073493, + "narHash": "sha256-5cPd1+i/skvJY9vJO1BhVRPcJObqkxDSywBEppDmb1U=", + "owner": "input-output-hk", + "repo": "stackage.nix", + "rev": "48e1188855ca38f3b7e2a8dba5352767a2f0a8f7", + "type": "github" + }, + "original": { + "owner": "input-output-hk", + "repo": "stackage.nix", + "type": "github" + } + }, + "stackage_23": { + "flake": false, + "locked": { + "lastModified": 1639012797, + "narHash": "sha256-hiLyBa5XFBvxD+BcYPKyYd/0dNMccxAuywFNqYtIIvs=", + "owner": "input-output-hk", + "repo": "stackage.nix", + "rev": "9ea6ea359da91c75a71e334b25aa7dc5ddc4b2c6", "type": "github" }, "original": { @@ -8016,11 +10348,11 @@ "stackage_3": { "flake": false, "locked": { - "lastModified": 1648084749, - "narHash": "sha256-kJ6ddC4yb5BAi2lqvXG1Q18EYkEHnhG22mDHPDMQAiE=", + "lastModified": 1648603096, + "narHash": "sha256-d1WKzMnk+2ZOXz3YSSqYHrMSHRVSZth+eS/pO5iSwVE=", "owner": "input-output-hk", "repo": "stackage.nix", - "rev": "d11ec4ac2be255d814560c5f50d5b72cdf314158", + "rev": "c2bdc5825795d3a6938aa74e598da57591b2e150", "type": "github" }, "original": { @@ -8032,11 +10364,11 @@ "stackage_4": { "flake": false, "locked": { - "lastModified": 1643073493, - "narHash": "sha256-5cPd1+i/skvJY9vJO1BhVRPcJObqkxDSywBEppDmb1U=", + "lastModified": 1649639721, + "narHash": "sha256-i/nyHyfpvw6en4phdjLS96DhJI95MVX3KubfUJwDtuU=", "owner": "input-output-hk", "repo": "stackage.nix", - "rev": "48e1188855ca38f3b7e2a8dba5352767a2f0a8f7", + "rev": "9d1954e8bf7ce40ce21d59794d19a8d1ddf06cd6", "type": "github" }, "original": { @@ -8048,11 +10380,11 @@ "stackage_5": { "flake": false, "locked": { - "lastModified": 1643073493, - "narHash": "sha256-5cPd1+i/skvJY9vJO1BhVRPcJObqkxDSywBEppDmb1U=", + "lastModified": 1648084749, + "narHash": "sha256-kJ6ddC4yb5BAi2lqvXG1Q18EYkEHnhG22mDHPDMQAiE=", "owner": "input-output-hk", "repo": "stackage.nix", - "rev": "48e1188855ca38f3b7e2a8dba5352767a2f0a8f7", + "rev": "d11ec4ac2be255d814560c5f50d5b72cdf314158", "type": "github" }, "original": { @@ -8096,11 +10428,11 @@ "stackage_8": { "flake": false, "locked": { - "lastModified": 1639012797, - "narHash": "sha256-hiLyBa5XFBvxD+BcYPKyYd/0dNMccxAuywFNqYtIIvs=", + "lastModified": 1643073493, + "narHash": "sha256-5cPd1+i/skvJY9vJO1BhVRPcJObqkxDSywBEppDmb1U=", "owner": "input-output-hk", "repo": "stackage.nix", - "rev": "9ea6ea359da91c75a71e334b25aa7dc5ddc4b2c6", + "rev": "48e1188855ca38f3b7e2a8dba5352767a2f0a8f7", "type": "github" }, "original": { @@ -8127,11 +10459,11 @@ }, "utils": { "locked": { - "lastModified": 1648297722, - "narHash": "sha256-W+qlPsiZd8F3XkzXOzAoR+mpFqzm3ekQkJNa+PIh1BQ=", + "lastModified": 1623875721, + "narHash": "sha256-A8BU7bjS5GirpAUv4QA+QnJ4CceLHkcXdRp4xITDB0s=", "owner": "numtide", "repo": "flake-utils", - "rev": "0f8662f1319ad6abf89b3380dd2722369fc51ade", + "rev": "f7e004a55b120c02ecb6219596820fcd32ca8772", "type": "github" }, "original": { @@ -8171,6 +10503,21 @@ } }, "utils_12": { + "locked": { + "lastModified": 1623875721, + "narHash": "sha256-A8BU7bjS5GirpAUv4QA+QnJ4CceLHkcXdRp4xITDB0s=", + "owner": "numtide", + "repo": "flake-utils", + "rev": "f7e004a55b120c02ecb6219596820fcd32ca8772", + "type": "github" + }, + "original": { + "owner": "numtide", + "repo": "flake-utils", + "type": "github" + } + }, + "utils_13": { "locked": { "lastModified": 1638122382, "narHash": "sha256-sQzZzAbvKEqN9s0bzWuYmRaA03v40gaJ4+iL1LXjaeI=", @@ -8185,7 +10532,7 @@ "type": "github" } }, - "utils_13": { + "utils_14": { "locked": { "lastModified": 1623875721, "narHash": "sha256-A8BU7bjS5GirpAUv4QA+QnJ4CceLHkcXdRp4xITDB0s=", @@ -8200,7 +10547,7 @@ "type": "github" } }, - "utils_14": { + "utils_15": { "locked": { "lastModified": 1623875721, "narHash": "sha256-A8BU7bjS5GirpAUv4QA+QnJ4CceLHkcXdRp4xITDB0s=", @@ -8215,7 +10562,7 @@ "type": "github" } }, - "utils_15": { + "utils_16": { "locked": { "lastModified": 1623875721, "narHash": "sha256-A8BU7bjS5GirpAUv4QA+QnJ4CceLHkcXdRp4xITDB0s=", @@ -8230,7 +10577,7 @@ "type": "github" } }, - "utils_16": { + "utils_17": { "locked": { "lastModified": 1638122382, "narHash": "sha256-sQzZzAbvKEqN9s0bzWuYmRaA03v40gaJ4+iL1LXjaeI=", @@ -8245,7 +10592,7 @@ "type": "github" } }, - "utils_17": { + "utils_18": { "locked": { "lastModified": 1623875721, "narHash": "sha256-A8BU7bjS5GirpAUv4QA+QnJ4CceLHkcXdRp4xITDB0s=", @@ -8260,7 +10607,7 @@ "type": "github" } }, - "utils_18": { + "utils_19": { "locked": { "lastModified": 1623875721, "narHash": "sha256-A8BU7bjS5GirpAUv4QA+QnJ4CceLHkcXdRp4xITDB0s=", @@ -8277,11 +10624,11 @@ }, "utils_2": { "locked": { - "lastModified": 1644229661, - "narHash": "sha256-1YdnJAsNy69bpcjuoKdOYQX0YxZBiCYZo4Twxerqv7k=", + "lastModified": 1648297722, + "narHash": "sha256-W+qlPsiZd8F3XkzXOzAoR+mpFqzm3ekQkJNa+PIh1BQ=", "owner": "numtide", "repo": "flake-utils", - "rev": "3cecb5b042f7f209c56ffd8371b2711a290ec797", + "rev": "0f8662f1319ad6abf89b3380dd2722369fc51ade", "type": "github" }, "original": { @@ -8290,7 +10637,7 @@ "type": "github" } }, - "utils_3": { + "utils_20": { "locked": { "lastModified": 1623875721, "narHash": "sha256-A8BU7bjS5GirpAUv4QA+QnJ4CceLHkcXdRp4xITDB0s=", @@ -8305,7 +10652,7 @@ "type": "github" } }, - "utils_4": { + "utils_21": { "locked": { "lastModified": 1638122382, "narHash": "sha256-sQzZzAbvKEqN9s0bzWuYmRaA03v40gaJ4+iL1LXjaeI=", @@ -8320,7 +10667,52 @@ "type": "github" } }, - "utils_5": { + "utils_22": { + "locked": { + "lastModified": 1623875721, + "narHash": "sha256-A8BU7bjS5GirpAUv4QA+QnJ4CceLHkcXdRp4xITDB0s=", + "owner": "numtide", + "repo": "flake-utils", + "rev": "f7e004a55b120c02ecb6219596820fcd32ca8772", + "type": "github" + }, + "original": { + "owner": "numtide", + "repo": "flake-utils", + "type": "github" + } + }, + "utils_23": { + "locked": { + "lastModified": 1653893745, + "narHash": "sha256-0jntwV3Z8//YwuOjzhV2sgJJPt+HY6KhU7VZUL0fKZQ=", + "owner": "numtide", + "repo": "flake-utils", + "rev": "1ed9fb1935d260de5fe1c2f7ee0ebaae17ed2fa1", + "type": "github" + }, + "original": { + "owner": "numtide", + "repo": "flake-utils", + "type": "github" + } + }, + "utils_3": { + "locked": { + "lastModified": 1644229661, + "narHash": "sha256-1YdnJAsNy69bpcjuoKdOYQX0YxZBiCYZo4Twxerqv7k=", + "owner": "numtide", + "repo": "flake-utils", + "rev": "3cecb5b042f7f209c56ffd8371b2711a290ec797", + "type": "github" + }, + "original": { + "owner": "numtide", + "repo": "flake-utils", + "type": "github" + } + }, + "utils_4": { "locked": { "lastModified": 1623875721, "narHash": "sha256-A8BU7bjS5GirpAUv4QA+QnJ4CceLHkcXdRp4xITDB0s=", @@ -8335,6 +10727,21 @@ "type": "github" } }, + "utils_5": { + "locked": { + "lastModified": 1638122382, + "narHash": "sha256-sQzZzAbvKEqN9s0bzWuYmRaA03v40gaJ4+iL1LXjaeI=", + "owner": "numtide", + "repo": "flake-utils", + "rev": "74f7e4319258e287b0f9cb95426c9853b282730b", + "type": "github" + }, + "original": { + "owner": "numtide", + "repo": "flake-utils", + "type": "github" + } + }, "utils_6": { "locked": { "lastModified": 1623875721, @@ -8367,11 +10774,11 @@ }, "utils_8": { "locked": { - "lastModified": 1638122382, - "narHash": "sha256-sQzZzAbvKEqN9s0bzWuYmRaA03v40gaJ4+iL1LXjaeI=", + "lastModified": 1623875721, + "narHash": "sha256-A8BU7bjS5GirpAUv4QA+QnJ4CceLHkcXdRp4xITDB0s=", "owner": "numtide", "repo": "flake-utils", - "rev": "74f7e4319258e287b0f9cb95426c9853b282730b", + "rev": "f7e004a55b120c02ecb6219596820fcd32ca8772", "type": "github" }, "original": { @@ -8382,11 +10789,11 @@ }, "utils_9": { "locked": { - "lastModified": 1623875721, - "narHash": "sha256-A8BU7bjS5GirpAUv4QA+QnJ4CceLHkcXdRp4xITDB0s=", + "lastModified": 1638122382, + "narHash": "sha256-sQzZzAbvKEqN9s0bzWuYmRaA03v40gaJ4+iL1LXjaeI=", "owner": "numtide", "repo": "flake-utils", - "rev": "f7e004a55b120c02ecb6219596820fcd32ca8772", + "rev": "74f7e4319258e287b0f9cb95426c9853b282730b", "type": "github" }, "original": { From b3aaf30c5e56ffcc8a0c4ecdad267c812d8f7633 Mon Sep 17 00:00:00 2001 From: John Ky Date: Sun, 5 Jun 2022 00:06:44 +1000 Subject: [PATCH 2/7] Remove tasty-th because it generated deprecated code --- bench/locli/src/Cardano/Analysis/Chain.hs | 5 +- .../locli/src/Cardano/Analysis/ChainFilter.hs | 3 +- cardano-api/cardano-api.cabal | 1 - cardano-api/test/Test/Cardano/Api/Json.hs | 31 +++++----- .../test/Test/Cardano/Api/KeysByron.hs | 19 +++--- cardano-api/test/Test/Cardano/Api/Ledger.hs | 27 ++++----- cardano-api/test/Test/Cardano/Api/Metadata.hs | 29 +++++---- .../test/Test/Cardano/Api/Typed/Address.hs | 24 ++++---- .../test/Test/Cardano/Api/Typed/Bech32.hs | 21 +++---- .../test/Test/Cardano/Api/Typed/CBOR.hs | 60 +++++++++++++------ .../test/Test/Cardano/Api/Typed/Envelope.hs | 37 ++++++++---- .../test/Test/Cardano/Api/Typed/JSON.hs | 23 +++---- .../test/Test/Cardano/Api/Typed/Ord.hs | 30 +++++----- .../test/Test/Cardano/Api/Typed/RawBytes.hs | 33 ++++++---- .../test/Test/Cardano/Api/Typed/Script.hs | 31 +++++----- .../test/Test/Cardano/Api/Typed/TxBody.hs | 23 ++++--- .../test/Test/Cardano/Api/Typed/Value.hs | 28 ++++----- cardano-node-chairman/test/Main.hs | 13 ++-- .../Cardano/Node/Tracing/Tracers/KESInfo.hs | 1 - cardano-testnet/test/Main.hs | 4 +- cardano-testnet/test/Test/Util.hs | 8 +-- 21 files changed, 244 insertions(+), 207 deletions(-) diff --git a/bench/locli/src/Cardano/Analysis/Chain.hs b/bench/locli/src/Cardano/Analysis/Chain.hs index 9dc4659887d..7b0a31db693 100644 --- a/bench/locli/src/Cardano/Analysis/Chain.hs +++ b/bench/locli/src/Cardano/Analysis/Chain.hs @@ -1,6 +1,9 @@ {-# LANGUAGE GeneralizedNewtypeDeriving#-} -{-# OPTIONS_GHC -Wno-deprecations -Wno-orphans #-} + +{-# OPTIONS_GHC -Wno-orphans #-} + {- HLINT ignore "Use head" -} + module Cardano.Analysis.Chain (module Cardano.Analysis.Chain) where import Cardano.Prelude hiding (head) diff --git a/bench/locli/src/Cardano/Analysis/ChainFilter.hs b/bench/locli/src/Cardano/Analysis/ChainFilter.hs index b513ecbe375..d77e47a1954 100644 --- a/bench/locli/src/Cardano/Analysis/ChainFilter.hs +++ b/bench/locli/src/Cardano/Analysis/ChainFilter.hs @@ -1,7 +1,8 @@ {-# LANGUAGE DeriveAnyClass #-} {-# LANGUAGE StrictData #-} -{-# OPTIONS_GHC -Wno-deprecations -Wno-orphans #-} + {- HLINT ignore "Use head" -} + module Cardano.Analysis.ChainFilter (module Cardano.Analysis.ChainFilter) where import Cardano.Prelude hiding (head) diff --git a/cardano-api/cardano-api.cabal b/cardano-api/cardano-api.cabal index 0a4ded35905..f82fed50a43 100644 --- a/cardano-api/cardano-api.cabal +++ b/cardano-api/cardano-api.cabal @@ -217,7 +217,6 @@ test-suite cardano-api-test , tasty , tasty-hedgehog , tasty-quickcheck - , tasty-th , time other-modules: Test.Cardano.Api.Crypto diff --git a/cardano-api/test/Test/Cardano/Api/Json.hs b/cardano-api/test/Test/Cardano/Api/Json.hs index ab6fe41ab25..82574c4fc0b 100644 --- a/cardano-api/test/Test/Cardano/Api/Json.hs +++ b/cardano-api/test/Test/Cardano/Api/Json.hs @@ -1,29 +1,23 @@ {-# LANGUAGE FlexibleContexts #-} {-# LANGUAGE GADTs #-} {-# LANGUAGE LambdaCase #-} -{-# LANGUAGE TemplateHaskell #-} - -{-# OPTIONS_GHC -Wno-deprecations #-} -- TODO Fix deprecations module Test.Cardano.Api.Json ( tests ) where +import Cardano.Api.Orphans () +import Cardano.Api.Shelley import Cardano.Prelude - import Data.Aeson (FromJSON (parseJSON), ToJSON (toJSON), eitherDecode, encode) import Data.Aeson.Types (Parser, parseEither) -import Hedgehog (Property, forAll, tripping) -import qualified Hedgehog as H -import Test.Tasty (TestTree) -import Test.Tasty.Hedgehog (testProperty) -import Test.Tasty.TH (testGroupGenerator) - -import Cardano.Api -import Cardano.Api.Orphans () -import Cardano.Api.Shelley import Gen.Cardano.Api (genAlonzoGenesis) import Gen.Cardano.Api.Typed +import Hedgehog (Property, forAll, tripping) +import Test.Tasty (TestTree, testGroup) +import Test.Tasty.Hedgehog (testPropertyNamed) + +import qualified Hedgehog as H {- HLINT ignore "Use camelCase" -} @@ -89,4 +83,13 @@ prop_json_roundtrip_scriptdata_detailed_json = H.property $ do tripping sData scriptDataToJsonDetailedSchema scriptDataFromJsonDetailedSchema tests :: TestTree -tests = $testGroupGenerator +tests = testGroup "Test.Cardano.Api.Json" + [ testPropertyNamed "json roundtrip alonzo genesis" "json roundtrip alonzo genesis" prop_json_roundtrip_alonzo_genesis + , testPropertyNamed "json roundtrip utxo" "json roundtrip utxo" prop_json_roundtrip_utxo + , testPropertyNamed "json roundtrip reference scripts" "json roundtrip reference scripts" prop_json_roundtrip_reference_scripts + , testPropertyNamed "json roundtrip txoutvalue" "json roundtrip txoutvalue" prop_json_roundtrip_txoutvalue + , testPropertyNamed "json roundtrip txout tx context" "json roundtrip txout tx context" prop_json_roundtrip_txout_tx_context + , testPropertyNamed "json roundtrip txout utxo context" "json roundtrip txout utxo context" prop_json_roundtrip_txout_utxo_context + , testPropertyNamed "json roundtrip eraInMode" "json roundtrip eraInMode" prop_json_roundtrip_eraInMode + , testPropertyNamed "json roundtrip scriptdata detailed json" "json roundtrip scriptdata detailed json" prop_json_roundtrip_scriptdata_detailed_json + ] diff --git a/cardano-api/test/Test/Cardano/Api/KeysByron.hs b/cardano-api/test/Test/Cardano/Api/KeysByron.hs index 027a83adfa4..b3c108c5e21 100644 --- a/cardano-api/test/Test/Cardano/Api/KeysByron.hs +++ b/cardano-api/test/Test/Cardano/Api/KeysByron.hs @@ -1,23 +1,18 @@ {-# LANGUAGE FlexibleContexts #-} -{-# LANGUAGE TemplateHaskell #-} - -{-# OPTIONS_GHC -Wno-deprecations #-} -- TODO Fix deprecations module Test.Cardano.Api.KeysByron ( tests ) where -import Cardano.Prelude - +import Cardano.Api (AsType(AsByronKey, AsSigningKey), Key(deterministicSigningKey)) +import Cardano.Prelude ((<$>)) +import Gen.Hedgehog.Roundtrip.CBOR (roundtrip_CBOR) import Hedgehog (Property) import Test.Cardano.Api.Typed.Orphans () -import Test.Tasty (TestTree) -import Test.Tasty.Hedgehog (testProperty) -import Test.Tasty.TH (testGroupGenerator) +import Test.Tasty (TestTree, testGroup) +import Test.Tasty.Hedgehog (testPropertyNamed) -import Cardano.Api import qualified Gen.Cardano.Crypto.Seed as Gen -import Gen.Hedgehog.Roundtrip.CBOR (roundtrip_CBOR) {- HLINT ignore "Use camelCase" -} @@ -26,4 +21,6 @@ prop_roundtrip_byron_key_CBOR = roundtrip_CBOR (AsSigningKey AsByronKey) (deterministicSigningKey AsByronKey <$> Gen.genSeedForKey AsByronKey) tests :: TestTree -tests = $testGroupGenerator +tests = testGroup "Test.Cardano.Api.KeysByron" + [ testPropertyNamed "roundtrip byron key CBOR" "roundtrip byron key CBOR" prop_roundtrip_byron_key_CBOR + ] diff --git a/cardano-api/test/Test/Cardano/Api/Ledger.hs b/cardano-api/test/Test/Cardano/Api/Ledger.hs index 7be69e04587..6f3a58e66a8 100644 --- a/cardano-api/test/Test/Cardano/Api/Ledger.hs +++ b/cardano-api/test/Test/Cardano/Api/Ledger.hs @@ -1,26 +1,20 @@ -{-# LANGUAGE StandaloneDeriving #-} -{-# LANGUAGE TemplateHaskell #-} {-# LANGUAGE TypeApplications #-} -{-# OPTIONS_GHC -Wno-deprecations #-} -- TODO Fix deprecations - module Test.Cardano.Api.Ledger ( tests ) where -import Cardano.Prelude - -import Hedgehog (Property) -import qualified Hedgehog as H -import qualified Hedgehog.Extras.Aeson as H -import Test.Tasty (TestTree) -import Test.Tasty.Hedgehog (testProperty) -import Test.Tasty.TH (testGroupGenerator) - import Cardano.Ledger.Address (deserialiseAddr, serialiseAddr) +import Cardano.Prelude (($)) +import Hedgehog (Property) import Ouroboros.Consensus.Shelley.Eras (StandardCrypto) -import Test.Cardano.Api.Genesis +import Test.Cardano.Api.Genesis (exampleShelleyGenesis) import Test.Cardano.Ledger.Shelley.Serialisation.Generators.Genesis (genAddress) +import Test.Tasty (TestTree, testGroup) +import Test.Tasty.Hedgehog (testPropertyNamed) + +import qualified Hedgehog as H +import qualified Hedgehog.Extras.Aeson as H prop_golden_ShelleyGenesis :: Property prop_golden_ShelleyGenesis = H.goldenTestJsonValuePretty exampleShelleyGenesis "test/Golden/ShelleyGenesis" @@ -37,4 +31,7 @@ prop_roundtrip_Address_CBOR = H.property $ do -- ----------------------------------------------------------------------------- tests :: TestTree -tests = $testGroupGenerator +tests = testGroup "Test.Cardano.Api.Ledger" + [ testPropertyNamed "golden ShelleyGenesis" "golden ShelleyGenesis" prop_golden_ShelleyGenesis + , testPropertyNamed "roundtrip Address CBOR" "roundtrip Address CBOR" prop_roundtrip_Address_CBOR + ] diff --git a/cardano-api/test/Test/Cardano/Api/Metadata.hs b/cardano-api/test/Test/Cardano/Api/Metadata.hs index bbd368507de..38b973282bc 100644 --- a/cardano-api/test/Test/Cardano/Api/Metadata.hs +++ b/cardano-api/test/Test/Cardano/Api/Metadata.hs @@ -1,7 +1,4 @@ {-# LANGUAGE OverloadedStrings #-} -{-# LANGUAGE TemplateHaskell #-} - -{-# OPTIONS_GHC -Wno-deprecations #-} -- TODO Fix deprecations module Test.Cardano.Api.Metadata ( tests @@ -9,18 +6,16 @@ module Test.Cardano.Api.Metadata , genTxMetadataValue ) where +import Cardano.Api import Cardano.Prelude +import Gen.Cardano.Api.Metadata +import Hedgehog (Property, property, (===)) +import Test.Tasty (TestTree, testGroup) +import Test.Tasty.Hedgehog (testPropertyNamed) import qualified Data.Aeson as Aeson import qualified Data.Map.Strict as Map -import Hedgehog (Property, property, (===)) import qualified Hedgehog -import Test.Tasty (TestTree) -import Test.Tasty.Hedgehog (testProperty) -import Test.Tasty.TH (testGroupGenerator) - -import Cardano.Api -import Gen.Cardano.Api.Metadata -- ---------------------------------------------------------------------------- -- Golden / unit tests @@ -126,4 +121,16 @@ prop_metadata_roundtrip_via_schema_json = Hedgehog.property $ do -- tests :: TestTree -tests = $testGroupGenerator +tests = testGroup "Test.Cardano.Api.Metadata" + [ testPropertyNamed "golden 1" "golden 1" prop_golden_1 + , testPropertyNamed "golden 2" "golden 2" prop_golden_2 + , testPropertyNamed "golden 3" "golden 3" prop_golden_3 + , testPropertyNamed "golden 4" "golden 4" prop_golden_4 + , testPropertyNamed "golden 5" "golden 5" prop_golden_5 + , testPropertyNamed "golden 6" "golden 6" prop_golden_6 + , testPropertyNamed "golden 7" "golden 7" prop_golden_7 + , testPropertyNamed "golden 8" "golden 8" prop_golden_8 + , testPropertyNamed "noschema json roundtrip via metadata" "noschema json roundtrip via metadata" prop_noschema_json_roundtrip_via_metadata + , testPropertyNamed "schema json roundtrip via metadata" "schema json roundtrip via metadata" prop_schema_json_roundtrip_via_metadata + , testPropertyNamed "metadata roundtrip via schema json" "metadata roundtrip via schema json" prop_metadata_roundtrip_via_schema_json + ] diff --git a/cardano-api/test/Test/Cardano/Api/Typed/Address.hs b/cardano-api/test/Test/Cardano/Api/Typed/Address.hs index d9d85d5fb73..832af0c2cc3 100644 --- a/cardano-api/test/Test/Cardano/Api/Typed/Address.hs +++ b/cardano-api/test/Test/Cardano/Api/Typed/Address.hs @@ -1,23 +1,18 @@ {-# LANGUAGE FlexibleContexts #-} -{-# LANGUAGE TemplateHaskell #-} - -{-# OPTIONS_GHC -Wno-deprecations #-} -- TODO Fix deprecations module Test.Cardano.Api.Typed.Address ( tests ) where -import Cardano.Prelude - -import Hedgehog (Property) -import qualified Hedgehog as H -import Test.Tasty (TestTree) -import Test.Tasty.Hedgehog (testProperty) -import Test.Tasty.TH (testGroupGenerator) - import Cardano.Api -import Gen.Cardano.Api.Typed +import Cardano.Prelude (($), Eq, Show) +import Gen.Cardano.Api.Typed (genAddressByron, genAddressShelley) +import Hedgehog (Property) import Test.Cardano.Api.Typed.Orphans () +import Test.Tasty (TestTree, testGroup) +import Test.Tasty.Hedgehog (testPropertyNamed) + +import qualified Hedgehog as H {- HLINT ignore "Use camelCase" -} @@ -48,4 +43,7 @@ roundtrip_serialise_address asType g = -- ----------------------------------------------------------------------------- tests :: TestTree -tests = $testGroupGenerator +tests = testGroup "Test.Cardano.Api.Typed.Address" + [ testPropertyNamed "roundtrip shelley address" "roundtrip shelley address" prop_roundtrip_shelley_address + , testPropertyNamed "roundtrip byron address" "roundtrip byron address" prop_roundtrip_byron_address + ] diff --git a/cardano-api/test/Test/Cardano/Api/Typed/Bech32.hs b/cardano-api/test/Test/Cardano/Api/Typed/Bech32.hs index 7cda9676f36..636bb3f1339 100644 --- a/cardano-api/test/Test/Cardano/Api/Typed/Bech32.hs +++ b/cardano-api/test/Test/Cardano/Api/Typed/Bech32.hs @@ -1,19 +1,13 @@ -{-# LANGUAGE TemplateHaskell #-} - -{-# OPTIONS_GHC -Wno-deprecations #-} -- TODO Fix deprecations - module Test.Cardano.Api.Typed.Bech32 ( tests ) where -import Hedgehog (Property) -import Test.Tasty (TestTree) -import Test.Tasty.Hedgehog (testProperty) -import Test.Tasty.TH (testGroupGenerator) - -import Cardano.Api -import Gen.Cardano.Api.Typed +import Cardano.Api (AsType(AsStakeAddress, AsShelleyAddress)) +import Gen.Cardano.Api.Typed( genAddressShelley, genStakeAddress) import Gen.Hedgehog.Roundtrip.Bech32 (roundtrip_Bech32) +import Hedgehog (Property) +import Test.Tasty (TestTree, testGroup) +import Test.Tasty.Hedgehog (testPropertyNamed) prop_roundtrip_Address_Shelley :: Property prop_roundtrip_Address_Shelley = roundtrip_Bech32 AsShelleyAddress genAddressShelley @@ -22,4 +16,7 @@ prop_roundtrip_StakeAddress :: Property prop_roundtrip_StakeAddress = roundtrip_Bech32 AsStakeAddress genStakeAddress tests :: TestTree -tests = $testGroupGenerator +tests = testGroup "Test.Cardano.Api.Typed.Bech32" + [ testPropertyNamed "roundtrip Address Shelley" "roundtrip Address Shelley" prop_roundtrip_Address_Shelley + , testPropertyNamed "roundtrip StakeAddress" "roundtrip StakeAddress" prop_roundtrip_StakeAddress + ] diff --git a/cardano-api/test/Test/Cardano/Api/Typed/CBOR.hs b/cardano-api/test/Test/Cardano/Api/Typed/CBOR.hs index bbc3316498c..add9a84d22b 100644 --- a/cardano-api/test/Test/Cardano/Api/Typed/CBOR.hs +++ b/cardano-api/test/Test/Cardano/Api/Typed/CBOR.hs @@ -1,27 +1,20 @@ -{-# LANGUAGE EmptyCase #-} {-# LANGUAGE FlexibleContexts #-} {-# LANGUAGE GADTs #-} {-# LANGUAGE RankNTypes #-} -{-# LANGUAGE TemplateHaskell #-} - -{-# OPTIONS_GHC -Wno-deprecations #-} -- TODO Fix deprecations module Test.Cardano.Api.Typed.CBOR ( tests ) where -import Cardano.Prelude - -import Hedgehog (Property, forAll, property, success, tripping) -import Test.Tasty (TestTree, testGroup) -import Test.Tasty.Hedgehog (testProperty) -import Test.Tasty.TH (testGroupGenerator) - import Cardano.Api - +import Cardano.Prelude +import Data.String (IsString(..)) import Gen.Cardano.Api.Typed import Gen.Hedgehog.Roundtrip.CBOR (roundtrip_CBOR) +import Hedgehog (Property, forAll, property, success, tripping) import Test.Cardano.Api.Typed.Orphans () +import Test.Tasty (TestTree, testGroup) +import Test.Tasty.Hedgehog (testPropertyNamed) {- HLINT ignore "Use camelCase" -} @@ -30,14 +23,14 @@ import Test.Cardano.Api.Typed.Orphans () test_roundtrip_txbody_CBOR :: [TestTree] test_roundtrip_txbody_CBOR = - [ testProperty (show era) $ + [ testPropertyNamed (show era) (fromString (show era)) $ roundtrip_CBOR (proxyToAsType Proxy) (genTxBody era) | AnyCardanoEra era <- [minBound..(AnyCardanoEra AlonzoEra)] -- TODO: Babbage era ] test_roundtrip_tx_CBOR :: [TestTree] test_roundtrip_tx_CBOR = - [ testProperty (show era) $ roundtrip_CBOR (proxyToAsType Proxy) (genTx era) + [ testPropertyNamed (show era) (fromString (show era)) $ roundtrip_CBOR (proxyToAsType Proxy) (genTx era) | AnyCardanoEra era <- [minBound..(AnyCardanoEra AlonzoEra)] -- TODO: Babbage era ] @@ -160,13 +153,13 @@ prop_roundtrip_UpdateProposal_CBOR = test_roundtrip_Tx_Cddl :: [TestTree] test_roundtrip_Tx_Cddl = - [ testProperty (show era) $ roundtrip_Tx_Cddl anyEra + [ testPropertyNamed (show era) (fromString (show era)) $ roundtrip_Tx_Cddl anyEra | anyEra@(AnyCardanoEra era) <- [minBound..(AnyCardanoEra AlonzoEra)] --TODO: Babbage era ] test_roundtrip_TxWitness_Cddl :: [TestTree] test_roundtrip_TxWitness_Cddl = - [ testProperty (show era) $ roundtrip_TxWitness_Cddl era + [ testPropertyNamed (show era) (fromString (show era)) $ roundtrip_TxWitness_Cddl era | AnyCardanoEra era <- [minBound..(AnyCardanoEra AlonzoEra)] --TODO: Babbage era , AnyCardanoEra era /= AnyCardanoEra ByronEra ] @@ -193,4 +186,37 @@ roundtrip_Tx_Cddl (AnyCardanoEra era) = -- ----------------------------------------------------------------------------- tests :: TestTree -tests = $testGroupGenerator +tests = testGroup "Test.Cardano.Api.Typed.CBOR" + [ testPropertyNamed "roundtrip witness byron CBOR" "roundtrip witness byron CBOR" prop_roundtrip_witness_byron_CBOR + , testPropertyNamed "roundtrip witness shelley CBOR" "roundtrip witness shelley CBOR" prop_roundtrip_witness_shelley_CBOR + , testPropertyNamed "roundtrip witness allegra CBOR" "roundtrip witness allegra CBOR" prop_roundtrip_witness_allegra_CBOR + , testPropertyNamed "roundtrip witness mary CBOR" "roundtrip witness mary CBOR" prop_roundtrip_witness_mary_CBOR + , testPropertyNamed "roundtrip witness alonzo CBOR" "roundtrip witness alonzo CBOR" prop_roundtrip_witness_alonzo_CBOR + , testPropertyNamed "roundtrip operational certificate CBOR" "roundtrip operational certificate CBOR" prop_roundtrip_operational_certificate_CBOR + , testPropertyNamed "roundtrip operational certificate issue counter CBOR" "roundtrip operational certificate issue counter CBOR" prop_roundtrip_operational_certificate_issue_counter_CBOR + , testPropertyNamed "roundtrip verification key byron CBOR" "roundtrip verification key byron CBOR" prop_roundtrip_verification_key_byron_CBOR + , testPropertyNamed "roundtrip signing key byron CBOR" "roundtrip signing key byron CBOR" prop_roundtrip_signing_key_byron_CBOR + , testPropertyNamed "roundtrip verification key payment CBOR" "roundtrip verification key payment CBOR" prop_roundtrip_verification_key_payment_CBOR + , testPropertyNamed "roundtrip signing key payment CBOR" "roundtrip signing key payment CBOR" prop_roundtrip_signing_key_payment_CBOR + , testPropertyNamed "roundtrip verification key stake CBOR" "roundtrip verification key stake CBOR" prop_roundtrip_verification_key_stake_CBOR + , testPropertyNamed "roundtrip signing key stake CBOR" "roundtrip signing key stake CBOR" prop_roundtrip_signing_key_stake_CBOR + , testPropertyNamed "roundtrip verification key genesis CBOR" "roundtrip verification key genesis CBOR" prop_roundtrip_verification_key_genesis_CBOR + , testPropertyNamed "roundtrip signing key genesis CBOR" "roundtrip signing key genesis CBOR" prop_roundtrip_signing_key_genesis_CBOR + , testPropertyNamed "roundtrip verification key genesis delegate CBOR" "roundtrip verification key genesis delegate CBOR" prop_roundtrip_verification_key_genesis_delegate_CBOR + , testPropertyNamed "roundtrip signing key genesis delegate CBOR" "roundtrip signing key genesis delegate CBOR" prop_roundtrip_signing_key_genesis_delegate_CBOR + , testPropertyNamed "roundtrip verification key stake pool CBOR" "roundtrip verification key stake pool CBOR" prop_roundtrip_verification_key_stake_pool_CBOR + , testPropertyNamed "roundtrip signing key stake pool CBOR" "roundtrip signing key stake pool CBOR" prop_roundtrip_signing_key_stake_pool_CBOR + , testPropertyNamed "roundtrip verification key vrf CBOR" "roundtrip verification key vrf CBOR" prop_roundtrip_verification_key_vrf_CBOR + , testPropertyNamed "roundtrip signing key vrf CBOR" "roundtrip signing key vrf CBOR" prop_roundtrip_signing_key_vrf_CBOR + , testPropertyNamed "roundtrip verification key kes CBOR" "roundtrip verification key kes CBOR" prop_roundtrip_verification_key_kes_CBOR + , testPropertyNamed "roundtrip signing key kes CBOR" "roundtrip signing key kes CBOR" prop_roundtrip_signing_key_kes_CBOR + , testPropertyNamed "roundtrip script SimpleScriptV1 CBOR" "roundtrip script SimpleScriptV1 CBOR" prop_roundtrip_script_SimpleScriptV1_CBOR + , testPropertyNamed "roundtrip script SimpleScriptV2 CBOR" "roundtrip script SimpleScriptV2 CBOR" prop_roundtrip_script_SimpleScriptV2_CBOR + , testPropertyNamed "roundtrip script PlutusScriptV1 CBOR" "roundtrip script PlutusScriptV1 CBOR" prop_roundtrip_script_PlutusScriptV1_CBOR + , testPropertyNamed "roundtrip script PlutusScriptV2 CBOR" "roundtrip script PlutusScriptV2 CBOR" prop_roundtrip_script_PlutusScriptV2_CBOR + , testPropertyNamed "roundtrip UpdateProposal CBOR" "roundtrip UpdateProposal CBOR" prop_roundtrip_UpdateProposal_CBOR + , testGroup "roundtrip txbody CBOR" test_roundtrip_txbody_CBOR + , testGroup "roundtrip tx CBOR" test_roundtrip_tx_CBOR + , testGroup "roundtrip Tx Cddl" test_roundtrip_Tx_Cddl + , testGroup "roundtrip TxWitness Cddl" test_roundtrip_TxWitness_Cddl + ] diff --git a/cardano-api/test/Test/Cardano/Api/Typed/Envelope.hs b/cardano-api/test/Test/Cardano/Api/Typed/Envelope.hs index 8a0a127d0e4..3ebbd53f789 100644 --- a/cardano-api/test/Test/Cardano/Api/Typed/Envelope.hs +++ b/cardano-api/test/Test/Cardano/Api/Typed/Envelope.hs @@ -1,24 +1,18 @@ {-# LANGUAGE FlexibleContexts #-} -{-# LANGUAGE StandaloneDeriving #-} -{-# LANGUAGE TemplateHaskell #-} - -{-# OPTIONS_GHC -Wno-deprecations #-} -- TODO Fix deprecations module Test.Cardano.Api.Typed.Envelope ( tests ) where -import Cardano.Prelude - -import Hedgehog (Property) -import qualified Hedgehog as H -import Test.Tasty (TestTree) -import Test.Tasty.Hedgehog (testProperty) -import Test.Tasty.TH (testGroupGenerator) - import Cardano.Api +import Cardano.Prelude import Gen.Cardano.Api.Typed +import Hedgehog (Property) import Test.Cardano.Api.Typed.Orphans () +import Test.Tasty (TestTree, testGroup) +import Test.Tasty.Hedgehog (testPropertyNamed) + +import qualified Hedgehog as H {- HLINT ignore "Use camelCase" -} @@ -115,4 +109,21 @@ roundtrip_SigningKey_envelope roletoken = -- ----------------------------------------------------------------------------- tests :: TestTree -tests = $testGroupGenerator +tests = testGroup "Test.Cardano.Api.Typed.Envelope" + [ testPropertyNamed "roundtrip ByronVerificationKey envelope" "roundtrip ByronVerificationKey envelope" prop_roundtrip_ByronVerificationKey_envelope + , testPropertyNamed "roundtrip ByronSigningKey envelope" "roundtrip ByronSigningKey envelope" prop_roundtrip_ByronSigningKey_envelope + , testPropertyNamed "roundtrip PaymentVerificationKey envelope" "roundtrip PaymentVerificationKey envelope" prop_roundtrip_PaymentVerificationKey_envelope + , testPropertyNamed "roundtrip PaymentSigningKey envelope" "roundtrip PaymentSigningKey envelope" prop_roundtrip_PaymentSigningKey_envelope + , testPropertyNamed "roundtrip StakeVerificationKey envelope" "roundtrip StakeVerificationKey envelope" prop_roundtrip_StakeVerificationKey_envelope + , testPropertyNamed "roundtrip StakeSigningKey envelope" "roundtrip StakeSigningKey envelope" prop_roundtrip_StakeSigningKey_envelope + , testPropertyNamed "roundtrip StakePoolVerificationKey envelope" "roundtrip StakePoolVerificationKey envelope" prop_roundtrip_StakePoolVerificationKey_envelope + , testPropertyNamed "roundtrip StakePoolSigningKey envelope" "roundtrip StakePoolSigningKey envelope" prop_roundtrip_StakePoolSigningKey_envelope + , testPropertyNamed "roundtrip GenesisVerificationKey envelope" "roundtrip GenesisVerificationKey envelope" prop_roundtrip_GenesisVerificationKey_envelope + , testPropertyNamed "roundtrip GenesisSigningKey envelope" "roundtrip GenesisSigningKey envelope" prop_roundtrip_GenesisSigningKey_envelope + , testPropertyNamed "roundtrip GenesisDelegateVerificationKey envelope" "roundtrip GenesisDelegateVerificationKey envelope" prop_roundtrip_GenesisDelegateVerificationKey_envelope + , testPropertyNamed "roundtrip GenesisDelegateSigningKey envelope" "roundtrip GenesisDelegateSigningKey envelope" prop_roundtrip_GenesisDelegateSigningKey_envelope + , testPropertyNamed "roundtrip KesVerificationKey envelope" "roundtrip KesVerificationKey envelope" prop_roundtrip_KesVerificationKey_envelope + , testPropertyNamed "roundtrip KesSigningKey envelope" "roundtrip KesSigningKey envelope" prop_roundtrip_KesSigningKey_envelope + , testPropertyNamed "roundtrip VrfVerificationKey envelope" "roundtrip VrfVerificationKey envelope" prop_roundtrip_VrfVerificationKey_envelope + , testPropertyNamed "roundtrip VrfSigningKey envelope" "roundtrip VrfSigningKey envelope" prop_roundtrip_VrfSigningKey_envelope + ] diff --git a/cardano-api/test/Test/Cardano/Api/Typed/JSON.hs b/cardano-api/test/Test/Cardano/Api/Typed/JSON.hs index 7d26ba0f776..4e1ac9888f3 100644 --- a/cardano-api/test/Test/Cardano/Api/Typed/JSON.hs +++ b/cardano-api/test/Test/Cardano/Api/Typed/JSON.hs @@ -1,12 +1,7 @@ -{-# LANGUAGE DeriveAnyClass #-} {-# LANGUAGE DerivingStrategies #-} {-# LANGUAGE FlexibleContexts #-} -{-# LANGUAGE StandaloneDeriving #-} -{-# LANGUAGE TemplateHaskell #-} -{-# LANGUAGE TypeApplications #-} {-# LANGUAGE TypeFamilies #-} -{-# OPTIONS_GHC -Wno-deprecations #-} -- TODO Fix deprecations {-# OPTIONS_GHC -Wno-orphans #-} module Test.Cardano.Api.Typed.JSON @@ -14,19 +9,16 @@ module Test.Cardano.Api.Typed.JSON ) where import Cardano.Prelude - import Data.Aeson (eitherDecode, encode) import Hedgehog (Property, forAll, tripping) -import qualified Hedgehog as H -import qualified Hedgehog.Gen as Gen -import Test.Tasty (TestTree) -import Test.Tasty.Hedgehog (testProperty) -import Test.Tasty.TH (testGroupGenerator) - +import Test.Tasty (TestTree, testGroup) +import Test.Tasty.Hedgehog (testPropertyNamed) import Gen.Cardano.Api.Typed (genMaybePraosNonce, genProtocolParameters) - import Test.Cardano.Api.Typed.Orphans () +import qualified Hedgehog as H +import qualified Hedgehog.Gen as Gen + {- HLINT ignore "Use camelCase" -} prop_roundtrip_praos_nonce_JSON :: Property @@ -42,4 +34,7 @@ prop_roundtrip_protocol_parameters_JSON = H.property $ do -- ----------------------------------------------------------------------------- tests :: TestTree -tests = $testGroupGenerator +tests = testGroup "Test.Cardano.Api.Typed.JSON" + [ testPropertyNamed "roundtrip praos nonce JSON" "roundtrip praos nonce JSON" prop_roundtrip_praos_nonce_JSON + , testPropertyNamed "roundtrip protocol parameters JSON" "roundtrip protocol parameters JSON" prop_roundtrip_protocol_parameters_JSON + ] diff --git a/cardano-api/test/Test/Cardano/Api/Typed/Ord.hs b/cardano-api/test/Test/Cardano/Api/Typed/Ord.hs index 4b38f5d87c3..e422a065654 100644 --- a/cardano-api/test/Test/Cardano/Api/Typed/Ord.hs +++ b/cardano-api/test/Test/Cardano/Api/Typed/Ord.hs @@ -1,26 +1,19 @@ -{-# LANGUAGE TemplateHaskell #-} - -{-# OPTIONS_GHC -Wno-deprecations #-} -- TODO Fix deprecations - module Test.Cardano.Api.Typed.Ord ( tests ) where -import Prelude - -import Hedgehog (Property, (===)) -import qualified Hedgehog as H -import Test.Cardano.Api.Metadata (genTxMetadataValue) -import Test.Tasty (TestTree) -import Test.Tasty.Hedgehog (testProperty) -import Test.Tasty.TH (testGroupGenerator) - import Cardano.Api import Cardano.Api.Shelley import Gen.Cardano.Api.Typed +import Hedgehog (Property, (===)) +import Prelude +import Test.Cardano.Api.Metadata (genTxMetadataValue) +import Test.Tasty (TestTree, testGroup) +import Test.Tasty.Hedgehog (testPropertyNamed) -{- HLINT ignore "Use camelCase" -} +import qualified Hedgehog as H +{- HLINT ignore "Use camelCase" -} ord_distributive :: (Show a, Ord a, Ord b) => H.Gen a -> (a -> b) -> Property @@ -61,4 +54,11 @@ prop_ord_distributive_ScriptData = -- ----------------------------------------------------------------------------- tests :: TestTree -tests = $testGroupGenerator +tests = testGroup "Test.Cardano.Api.Typed.Ord" + [ testPropertyNamed "ord distributive TxId" "ord distributive TxId" prop_ord_distributive_TxId + , testPropertyNamed "ord distributive TxIn" "ord distributive TxIn" prop_ord_distributive_TxIn + , testPropertyNamed "ord distributive Address" "ord distributive Address" prop_ord_distributive_Address + , testPropertyNamed "ord distributive StakeAddress" "ord distributive StakeAddress" prop_ord_distributive_StakeAddress + , testPropertyNamed "ord distributive TxMetadata" "ord distributive TxMetadata" prop_ord_distributive_TxMetadata + , testPropertyNamed "ord distributive ScriptData" "ord distributive ScriptData" prop_ord_distributive_ScriptData + ] diff --git a/cardano-api/test/Test/Cardano/Api/Typed/RawBytes.hs b/cardano-api/test/Test/Cardano/Api/Typed/RawBytes.hs index faae8ddc6e9..e7904bb4857 100644 --- a/cardano-api/test/Test/Cardano/Api/Typed/RawBytes.hs +++ b/cardano-api/test/Test/Cardano/Api/Typed/RawBytes.hs @@ -1,23 +1,18 @@ {-# LANGUAGE FlexibleContexts #-} -{-# LANGUAGE TemplateHaskell #-} - -{-# OPTIONS_GHC -Wno-deprecations #-} -- TODO Fix deprecations module Test.Cardano.Api.Typed.RawBytes ( tests ) where -import Cardano.Prelude - -import Hedgehog (Property) -import qualified Hedgehog as H -import Test.Tasty (TestTree) -import Test.Tasty.Hedgehog (testProperty) -import Test.Tasty.TH (testGroupGenerator) - import Cardano.Api +import Cardano.Prelude import Gen.Cardano.Api.Typed +import Hedgehog (Property) import Test.Cardano.Api.Typed.Orphans () +import Test.Tasty (TestTree, testGroup) +import Test.Tasty.Hedgehog (testPropertyNamed) + +import qualified Hedgehog as H {- HLINT ignore "Use camelCase" -} @@ -99,4 +94,18 @@ roundtrip_verification_key_hash_raw roletoken = -- ----------------------------------------------------------------------------- tests :: TestTree -tests = $testGroupGenerator +tests = testGroup "Test.Cardano.Api.Typed.RawBytes" + [ testPropertyNamed "roundtrip shelley address raw" "roundtrip shelley address raw" prop_roundtrip_shelley_address_raw + , testPropertyNamed "roundtrip byron address raw" "roundtrip byron address raw" prop_roundtrip_byron_address_raw + , testPropertyNamed "roundtrip stake address raw" "roundtrip stake address raw" prop_roundtrip_stake_address_raw + , testPropertyNamed "roundtrip script hash raw" "roundtrip script hash raw" prop_roundtrip_script_hash_raw + , testPropertyNamed "roundtrip verification ByronKey hash raw" "roundtrip verification ByronKey hash raw" prop_roundtrip_verification_ByronKey_hash_raw + , testPropertyNamed "roundtrip verification PaymentKey hash raw" "roundtrip verification PaymentKey hash raw" prop_roundtrip_verification_PaymentKey_hash_raw + , testPropertyNamed "roundtrip verification StakeKey hash raw" "roundtrip verification StakeKey hash raw" prop_roundtrip_verification_StakeKey_hash_raw + , testPropertyNamed "roundtrip verification StakePoolKey hash raw" "roundtrip verification StakePoolKey hash raw" prop_roundtrip_verification_StakePoolKey_hash_raw + , testPropertyNamed "roundtrip verification GenesisKey hash raw" "roundtrip verification GenesisKey hash raw" prop_roundtrip_verification_GenesisKey_hash_raw + , testPropertyNamed "roundtrip verification GenesisDelegateKey hash raw" "roundtrip verification GenesisDelegateKey hash raw" prop_roundtrip_verification_GenesisDelegateKey_hash_raw + , testPropertyNamed "roundtrip verification KesKey hash raw" "roundtrip verification KesKey hash raw" prop_roundtrip_verification_KesKey_hash_raw + , testPropertyNamed "roundtrip verification VrfKey hash raw" "roundtrip verification VrfKey hash raw" prop_roundtrip_verification_VrfKey_hash_raw + , testPropertyNamed "roundtrip verification GenesisUTxOKey hash raw" "roundtrip verification GenesisUTxOKey hash raw" prop_roundtrip_verification_GenesisUTxOKey_hash_raw + ] diff --git a/cardano-api/test/Test/Cardano/Api/Typed/Script.hs b/cardano-api/test/Test/Cardano/Api/Typed/Script.hs index 2e30f0cfaf1..16c26a96b5c 100644 --- a/cardano-api/test/Test/Cardano/Api/Typed/Script.hs +++ b/cardano-api/test/Test/Cardano/Api/Typed/Script.hs @@ -1,28 +1,21 @@ -{-# LANGUAGE TemplateHaskell #-} - -{-# OPTIONS_GHC -Wno-deprecations #-} -- TODO Fix deprecations - module Test.Cardano.Api.Typed.Script ( tests ) where +import Cardano.Api +import Cardano.Api.Shelley import Cardano.Prelude - import Data.Aeson +import Gen.Cardano.Api.Typed import Hedgehog (Property, (===)) -import qualified Hedgehog as H import Hedgehog.Extras.Aeson -import Test.Tasty (TestTree) -import Test.Tasty.Hedgehog (testProperty) -import Test.Tasty.TH (testGroupGenerator) +import Test.Tasty (TestTree, testGroup) +import Test.Tasty.Hedgehog (testPropertyNamed) -import Cardano.Api -import Cardano.Api.Shelley -import Gen.Cardano.Api.Typed +import qualified Hedgehog as H {- HLINT ignore "Use camelCase" -} - exampleSimpleScriptV1_All :: SimpleScript SimpleScriptV1 exampleSimpleScriptV1_All = RequireAllOf @@ -133,4 +126,14 @@ prop_roundtrip_ScriptData = -- ----------------------------------------------------------------------------- tests :: TestTree -tests = $testGroupGenerator +tests = testGroup "Test.Cardano.Api.Typed.Script" + [ testPropertyNamed "golden SimpleScriptV1 All" "golden SimpleScriptV1 All" prop_golden_SimpleScriptV1_All + , testPropertyNamed "golden SimpleScriptV1 Any" "golden SimpleScriptV1 Any" prop_golden_SimpleScriptV1_Any + , testPropertyNamed "golden SimpleScriptV1 MofN" "golden SimpleScriptV1 MofN" prop_golden_SimpleScriptV1_MofN + , testPropertyNamed "golden SimpleScriptV2 All" "golden SimpleScriptV2 All" prop_golden_SimpleScriptV2_All + , testPropertyNamed "golden SimpleScriptV2 Any" "golden SimpleScriptV2 Any" prop_golden_SimpleScriptV2_Any + , testPropertyNamed "golden SimpleScriptV2 MofN" "golden SimpleScriptV2 MofN" prop_golden_SimpleScriptV2_MofN + , testPropertyNamed "roundtrip SimpleScriptV1 JSON" "roundtrip SimpleScriptV1 JSON" prop_roundtrip_SimpleScriptV1_JSON + , testPropertyNamed "roundtrip SimpleScriptV2 JSON" "roundtrip SimpleScriptV2 JSON" prop_roundtrip_SimpleScriptV2_JSON + , testPropertyNamed "roundtrip ScriptData" "roundtrip ScriptData" prop_roundtrip_ScriptData + ] diff --git a/cardano-api/test/Test/Cardano/Api/Typed/TxBody.hs b/cardano-api/test/Test/Cardano/Api/Typed/TxBody.hs index 9b5dfa887fa..5786f1fad9f 100644 --- a/cardano-api/test/Test/Cardano/Api/Typed/TxBody.hs +++ b/cardano-api/test/Test/Cardano/Api/Typed/TxBody.hs @@ -1,25 +1,20 @@ {-# LANGUAGE LambdaCase #-} -{-# LANGUAGE TemplateHaskell #-} - -{-# OPTIONS_GHC -Wno-deprecations #-} module Test.Cardano.Api.Typed.TxBody ( tests ) where -import Cardano.Prelude - -import Hedgehog (Property, annotateShow, failure, (===), MonadTest) -import qualified Hedgehog as H -import Test.Tasty (TestTree) -import Test.Tasty.Hedgehog (testProperty) -import Test.Tasty.TH (testGroupGenerator) - import Cardano.Api import Cardano.Api.Shelley (ReferenceScript (..), refScriptToShelleyScript) +import Cardano.Prelude import Data.Type.Equality (TestEquality (testEquality)) -import Gen.Cardano.Api.Typed +import Gen.Cardano.Api.Typed (genTxBodyContent) +import Hedgehog (Property, annotateShow, failure, (===), MonadTest) import Test.Cardano.Api.Typed.Orphans () +import Test.Tasty (TestTree, testGroup) +import Test.Tasty.Hedgehog (testPropertyNamed) + +import qualified Hedgehog as H {- HLINT ignore "Use camelCase" -} @@ -80,4 +75,6 @@ prop_roundtrip_txbodycontent_txouts = _ -> False tests :: TestTree -tests = $testGroupGenerator +tests = testGroup "Test.Cardano.Api.Typed.TxBody" + [ testPropertyNamed "roundtrip txbodycontent txouts" "roundtrip txbodycontent txouts" prop_roundtrip_txbodycontent_txouts + ] diff --git a/cardano-api/test/Test/Cardano/Api/Typed/Value.hs b/cardano-api/test/Test/Cardano/Api/Typed/Value.hs index d88c9b23cb4..2007c91f54f 100644 --- a/cardano-api/test/Test/Cardano/Api/Typed/Value.hs +++ b/cardano-api/test/Test/Cardano/Api/Typed/Value.hs @@ -1,25 +1,17 @@ -{-# LANGUAGE TemplateHaskell #-} - -{-# OPTIONS_GHC -Wno-deprecations #-} -- TODO Fix deprecations - module Test.Cardano.Api.Typed.Value ( tests ) where -import Prelude - +import Cardano.Api (ValueNestedBundle(..), ValueNestedRep (..), valueFromNestedRep, valueToNestedRep) import Data.Aeson (eitherDecode, encode) import Data.List (groupBy, sort) -import qualified Data.Map.Strict as Map +import Gen.Cardano.Api.Typed (genAssetName, genValueDefault, genValueNestedRep) import Hedgehog (Property, forAll, property, tripping, (===)) -import Test.Tasty (TestTree) -import Test.Tasty.Hedgehog (testProperty) -import Test.Tasty.TH (testGroupGenerator) - -import Cardano.Api (ValueNestedBundle (ValueNestedBundle, ValueNestedBundleAda), - ValueNestedRep (..), valueFromNestedRep, valueToNestedRep) +import Prelude +import Test.Tasty (TestTree, testGroup) +import Test.Tasty.Hedgehog (testPropertyNamed) -import Gen.Cardano.Api.Typed (genAssetName, genValueDefault, genValueNestedRep) +import qualified Data.Map.Strict as Map prop_roundtrip_Value_JSON :: Property prop_roundtrip_Value_JSON = @@ -88,4 +80,10 @@ prop_roundtrip_AssetName_JSONKey = -- ----------------------------------------------------------------------------- tests :: TestTree -tests = $testGroupGenerator +tests = testGroup "Test.Cardano.Api.Typed.Value" + [ testPropertyNamed "roundtrip Value JSON" "roundtrip Value JSON" prop_roundtrip_Value_JSON + , testPropertyNamed "roundtrip Value flatten unflatten" "roundtrip Value flatten unflatten" prop_roundtrip_Value_flatten_unflatten + , testPropertyNamed "roundtrip Value unflatten flatten" "roundtrip Value unflatten flatten" prop_roundtrip_Value_unflatten_flatten + , testPropertyNamed "roundtrip AssetName JSON" "roundtrip AssetName JSON" prop_roundtrip_AssetName_JSON + , testPropertyNamed "roundtrip AssetName JSONKey" "roundtrip AssetName JSONKey" prop_roundtrip_AssetName_JSONKey + ] diff --git a/cardano-node-chairman/test/Main.hs b/cardano-node-chairman/test/Main.hs index 65c41b501d7..0c98e47747f 100644 --- a/cardano-node-chairman/test/Main.hs +++ b/cardano-node-chairman/test/Main.hs @@ -1,11 +1,10 @@ {-# LANGUAGE FlexibleInstances #-} -{-# OPTIONS_GHC -Wno-deprecations #-} -- TODO Fix deprecations - module Main ( main ) where +import Data.String (IsString(..)) import Prelude import qualified System.Environment as E @@ -20,11 +19,11 @@ import qualified Spec.Network tests :: IO T.TestTree tests = do - let t0 = H.testProperty "isPortOpen False" Spec.Network.hprop_isPortOpen_False - let t1 = H.testProperty "isPortOpen True" Spec.Network.hprop_isPortOpen_True - let t2 = H.testProperty "chairman" Spec.Chairman.Byron.hprop_chairman - let t3 = H.testProperty "chairman" Spec.Chairman.Cardano.hprop_chairman - let t4 = H.testProperty "chairman" Spec.Chairman.Shelley.hprop_chairman + let t0 = H.testPropertyNamed "isPortOpen False" (fromString "isPortOpen False") Spec.Network.hprop_isPortOpen_False + let t1 = H.testPropertyNamed "isPortOpen True" (fromString "isPortOpen True" ) Spec.Network.hprop_isPortOpen_True + let t2 = H.testPropertyNamed "chairman" (fromString "chairman" ) Spec.Chairman.Byron.hprop_chairman + let t3 = H.testPropertyNamed "chairman" (fromString "chairman" ) Spec.Chairman.Cardano.hprop_chairman + let t4 = H.testPropertyNamed "chairman" (fromString "chairman" ) Spec.Chairman.Shelley.hprop_chairman pure $ T.testGroup "test/Spec.hs" [ T.testGroup "Spec" diff --git a/cardano-node/src/Cardano/Node/Tracing/Tracers/KESInfo.hs b/cardano-node/src/Cardano/Node/Tracing/Tracers/KESInfo.hs index a029314c5b3..6551ab3be56 100644 --- a/cardano-node/src/Cardano/Node/Tracing/Tracers/KESInfo.hs +++ b/cardano-node/src/Cardano/Node/Tracing/Tracers/KESInfo.hs @@ -6,7 +6,6 @@ {-# LANGUAGE UndecidableInstances #-} {-# OPTIONS_GHC -Wno-orphans #-} -{-# OPTIONS_GHC -Wno-deprecations #-} module Cardano.Node.Tracing.Tracers.KESInfo ( severityKESInfo diff --git a/cardano-testnet/test/Main.hs b/cardano-testnet/test/Main.hs index 437d96fc49d..690d75ae294 100644 --- a/cardano-testnet/test/Main.hs +++ b/cardano-testnet/test/Main.hs @@ -1,7 +1,5 @@ {-# LANGUAGE FlexibleInstances #-} -{-# OPTIONS_GHC -Wno-deprecations #-} -- TODO Fix deprecations - module Main ( main ) where @@ -19,7 +17,7 @@ import qualified Test.Util as H tests :: IO TestTree tests = pure $ T.testGroup "test/Spec.hs" [ T.testGroup "Spec" - [ H.ignoreOnWindows "Shutdown" Spec.Node.Shutdown.hprop_shutdown + [ H.ignoreOnWindows "Shutdown" Spec.Node.Shutdown.hprop_shutdown , H.ignoreOnWindows "ShutdownOnSlotSynced" Spec.ShutdownOnSlotSynced.hprop_shutdownOnSlotSynced -- Ignored on Windows due to : commitBuffer: invalid argument (invalid character) -- as a result of the kes-period-info output to stdout. diff --git a/cardano-testnet/test/Test/Util.hs b/cardano-testnet/test/Test/Util.hs index 762d6156c46..77103790396 100644 --- a/cardano-testnet/test/Test/Util.hs +++ b/cardano-testnet/test/Test/Util.hs @@ -1,4 +1,3 @@ -{-# OPTIONS_GHC -Wno-deprecations #-} -- TODO Fix deprecations module Test.Util ( ignoreOn @@ -8,6 +7,7 @@ module Test.Util ) where import Data.Bool (bool) +import Data.String (IsString(..)) import Hedgehog (Property) import Hedgehog.Extras.Stock.OS (isWin32) import Prelude @@ -22,15 +22,15 @@ type Os = String ignoreOnWindows :: String -> Property -> TestTree ignoreOnWindows pName prop = - bool id (ignoreOn "Windows") isWin32 $ H.testProperty pName prop + bool id (ignoreOn "Windows") isWin32 $ H.testPropertyNamed pName (fromString pName) prop ignoreOnMac :: String -> Property -> TestTree ignoreOnMac pName prop = - bool id (ignoreOn "MacOS") isMacOS $ H.testProperty pName prop + bool id (ignoreOn "MacOS") isMacOS $ H.testPropertyNamed pName (fromString pName) prop ignoreOnMacAndWindows :: String -> Property -> TestTree ignoreOnMacAndWindows pName prop = - bool id (ignoreOn "MacOS and Windows") (isMacOS || isWin32) $ H.testProperty pName prop + bool id (ignoreOn "MacOS and Windows") (isMacOS || isWin32) $ H.testPropertyNamed pName (fromString pName) prop isMacOS :: Bool isMacOS = SYS.os == "darwin" From c569d8e87a2b1b8d06e4e6c1b32be2c5075050fd Mon Sep 17 00:00:00 2001 From: Hamish Mackenzie Date: Tue, 7 Jun 2022 17:42:05 +1200 Subject: [PATCH 3/7] Update haskell.nix for win32 file access error See https://github.com/input-output-hk/haskell.nix/pull/1508 --- flake.lock | 6 +++--- nix/haskell.nix | 40 ---------------------------------------- 2 files changed, 3 insertions(+), 43 deletions(-) diff --git a/flake.lock b/flake.lock index 891870f8144..9db31fcdedd 100644 --- a/flake.lock +++ b/flake.lock @@ -4582,11 +4582,11 @@ "stackage": "stackage_2" }, "locked": { - "lastModified": 1654479977, - "narHash": "sha256-qEeNnm7Hsyf2kLKLkxkNtR43uZrZ1e1mBuBOhQqXxzk=", + "lastModified": 1654580214, + "narHash": "sha256-1RxPP2p2+97q5TGtxBi3C6z7bKlbc6lrGOgvOCPXozE=", "owner": "input-output-hk", "repo": "haskell.nix", - "rev": "aaf333d2d865c31fd69d7d14accbbfc65e29135a", + "rev": "d71e854deab4a5661f55d5a1675e34bd8d418061", "type": "github" }, "original": { diff --git a/nix/haskell.nix b/nix/haskell.nix index 4a937c575e4..f4c81b819e2 100644 --- a/nix/haskell.nix +++ b/nix/haskell.nix @@ -72,46 +72,6 @@ haskell-nix.cabalProject' ({ pkgs setGitRev = ''${pkgs.buildPackages.haskellBuildUtils}/bin/set-git-rev "${gitrev}" $out/bin/*''; in [ - # Allow reinstallation of Win32 - ({ pkgs, ... }: lib.mkIf pkgs.stdenv.hostPlatform.isWindows { - nonReinstallablePkgs = - [ - "rts" - "ghc-heap" - "ghc-prim" - "integer-gmp" - "integer-simple" - "base" - "deepseq" - "array" - "ghc-boot-th" - "pretty" - "template-haskell" - # ghcjs custom packages - "ghcjs-prim" - "ghcjs-th" - "ghc-boot" - "ghc" - "array" - "binary" - "bytestring" - "containers" - "filepath" - "ghc-boot" - "ghc-compact" - "ghc-prim" - # "ghci" "haskeline" - "hpc" - "mtl" - "parsec" - "text" - "transformers" - "xhtml" - # "stm" "terminfo" - ]; - # When cross compfixesiling we don't have a `ghc` package - packages.plutus-tx-plugin.flags.use-ghc-stub = true; - }) ({ pkgs, ... }: { packages.tx-generator.package.buildable = with pkgs.stdenv.hostPlatform; isUnix && !isMusl; packages.cardano-tracer.package.buildable = with pkgs.stdenv.hostPlatform; isUnix && !isMusl; From 706fc5d11c37c1c9a14c03999849671ba267d99e Mon Sep 17 00:00:00 2001 From: Hamish Mackenzie Date: Mon, 4 Jul 2022 11:45:02 +1000 Subject: [PATCH 4/7] Bump haskellNix to get wine 5.4 --- cabal.project | 6 +++--- flake.lock | 12 ++++++------ 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/cabal.project b/cabal.project index d3ec488695e..b715e40509e 100644 --- a/cabal.project +++ b/cabal.project @@ -1,5 +1,5 @@ -- run `nix flake lock --update-input hackageNix` after updating index-state. -index-state: 2022-06-01T00:00:00Z +index-state: 2022-07-01T00:00:00Z packages: cardano-api @@ -227,7 +227,7 @@ source-repository-package source-repository-package type: git location: https://github.com/input-output-hk/cardano-prelude - tag: bb4ed71ba8e587f672d06edf9d2e376f4b055555 + tag: 66baa7470d76f8cc0d75a65bda8283eafd3e81e1 --sha256: 00h10l5mmiza9819p9v5q5749nb9pzgi20vpzpy1d34zmh6gf1cj subdir: cardano-prelude @@ -237,7 +237,7 @@ source-repository-package type: git location: https://github.com/input-output-hk/goblins tag: cde90a2b27f79187ca8310b6549331e59595e7ba - --sha256: 17c88rbva3iw82yg9srlxjv2ia5wjb9cyqw44hik565f5v9svnyg + --sha256: 1x0hl7393yvag54440gg4ds2q5330q4ksj73w6108rmhnk2pspsm source-repository-package type: git diff --git a/flake.lock b/flake.lock index 9db31fcdedd..cdac991f80f 100644 --- a/flake.lock +++ b/flake.lock @@ -4582,11 +4582,11 @@ "stackage": "stackage_2" }, "locked": { - "lastModified": 1654580214, - "narHash": "sha256-1RxPP2p2+97q5TGtxBi3C6z7bKlbc6lrGOgvOCPXozE=", + "lastModified": 1656898207, + "narHash": "sha256-hshNfCnrmhIvM4T+O0/JRZymsHmq9YiIJ4bpzNVTD98=", "owner": "input-output-hk", "repo": "haskell.nix", - "rev": "d71e854deab4a5661f55d5a1675e34bd8d418061", + "rev": "21230476adfef5fa77fb19fbda396f22006a02bc", "type": "github" }, "original": { @@ -10268,11 +10268,11 @@ "stackage_2": { "flake": false, "locked": { - "lastModified": 1654478255, - "narHash": "sha256-HJdZRznTApwbsOAxjmpLP++vCxuPrWCWvquaFJhMfvs=", + "lastModified": 1656898145, + "narHash": "sha256-EMgMzdANg6r5gEUkMtv5ujDo2/Kx7JJXoXiDKjDVoLw=", "owner": "input-output-hk", "repo": "stackage.nix", - "rev": "21b250dcad395664268fc733f0bd832df3cacd07", + "rev": "835a5f2d2a1acafb77add430fc8c2dd47282ef32", "type": "github" }, "original": { From 5ff3e1d840282481b5c1685f1b579fb25998374e Mon Sep 17 00:00:00 2001 From: John Ky Date: Mon, 4 Jul 2022 15:21:03 +1000 Subject: [PATCH 5/7] Update cardano-prelude dependency --- cabal.project | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cabal.project b/cabal.project index b715e40509e..03bae45b4b5 100644 --- a/cabal.project +++ b/cabal.project @@ -227,8 +227,8 @@ source-repository-package source-repository-package type: git location: https://github.com/input-output-hk/cardano-prelude - tag: 66baa7470d76f8cc0d75a65bda8283eafd3e81e1 - --sha256: 00h10l5mmiza9819p9v5q5749nb9pzgi20vpzpy1d34zmh6gf1cj + tag: c7fc9fba236972c27a55e0f3d34c2758cf616bfc + --sha256: 0sg1hhnifqxfc5n5f9ikbxyrjlg77hynbhsql0h4smqniw29dbwk subdir: cardano-prelude cardano-prelude-test From 8e90f76c2338d7b54e1a0cb2c20c91790ef7671f Mon Sep 17 00:00:00 2001 From: John Ky Date: Mon, 4 Jul 2022 16:23:18 +1000 Subject: [PATCH 6/7] Update hackageNix --- flake.lock | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/flake.lock b/flake.lock index cdac991f80f..edc00b8a673 100644 --- a/flake.lock +++ b/flake.lock @@ -3768,11 +3768,11 @@ "hackageNix": { "flake": false, "locked": { - "lastModified": 1654478164, - "narHash": "sha256-yunJSaYIJwYEEm3TdKwphpn1svlPQfYZL2GbQQObTtc=", + "lastModified": 1656898050, + "narHash": "sha256-jemAb/Wm/uT+QhV12GlyeA5euSWxYzr2HOYoK4MZps0=", "owner": "input-output-hk", "repo": "hackage.nix", - "rev": "b6543396beed02768ed84cc5d24a14cd92498eec", + "rev": "4f1dd530219ca1165f523ffb2c62213ebede4046", "type": "github" }, "original": { From 15cd88d4beab6e6d6b18c7fa7d414d5c5a00ba73 Mon Sep 17 00:00:00 2001 From: John Ky Date: Mon, 4 Jul 2022 16:30:11 +1000 Subject: [PATCH 7/7] Update goblins hash --- cabal.project | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cabal.project b/cabal.project index 03bae45b4b5..00f15f10637 100644 --- a/cabal.project +++ b/cabal.project @@ -237,7 +237,7 @@ source-repository-package type: git location: https://github.com/input-output-hk/goblins tag: cde90a2b27f79187ca8310b6549331e59595e7ba - --sha256: 1x0hl7393yvag54440gg4ds2q5330q4ksj73w6108rmhnk2pspsm + --sha256: 17c88rbva3iw82yg9srlxjv2ia5wjb9cyqw44hik565f5v9svnyg source-repository-package type: git