forked from awakesecurity/proto3-suite
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #3 from herp-inc/relax-dep-versions
依存ライブラリーのバージョン範囲を緩和 GHC 9.8 対応
- Loading branch information
Showing
37 changed files
with
877 additions
and
26 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
{ mkDerivation, attoparsec, base, base-compat | ||
, base-compat-batteries, base-orphans, base16-bytestring | ||
, bytestring, containers, data-fix, deepseq, Diff, directory, dlist | ||
, exceptions, filepath, generic-deriving, generically, ghc-prim | ||
, hashable, indexed-traversable, integer-logarithms, lib, OneTuple | ||
, primitive, QuickCheck, quickcheck-instances, scientific | ||
, semialign, strict, tagged, tasty, tasty-golden, tasty-hunit | ||
, tasty-quickcheck, template-haskell, text, text-short | ||
, th-abstraction, these, time, time-compat, unordered-containers | ||
, uuid-types, vector, witherable | ||
}: | ||
mkDerivation { | ||
pname = "aeson"; | ||
version = "2.1.2.1"; | ||
sha256 = "5d4042b903ce181ee023bbf908f37a3f55e820c5f0df102683b87f963e3522c6"; | ||
revision = "3"; | ||
editedCabalFile = "19qj4s625b34kw8ryb2ji0hs6dg2m116x913s722bab316k653av"; | ||
libraryHaskellDepends = [ | ||
attoparsec base base-compat-batteries bytestring containers | ||
data-fix deepseq dlist exceptions generically ghc-prim hashable | ||
indexed-traversable OneTuple primitive QuickCheck scientific | ||
semialign strict tagged template-haskell text text-short | ||
th-abstraction these time time-compat unordered-containers | ||
uuid-types vector witherable | ||
]; | ||
testHaskellDepends = [ | ||
attoparsec base base-compat base-orphans base16-bytestring | ||
bytestring containers data-fix Diff directory dlist filepath | ||
generic-deriving generically ghc-prim hashable indexed-traversable | ||
integer-logarithms OneTuple primitive QuickCheck | ||
quickcheck-instances scientific strict tagged tasty tasty-golden | ||
tasty-hunit tasty-quickcheck template-haskell text text-short these | ||
time time-compat unordered-containers uuid-types vector | ||
]; | ||
homepage = "https://github.com/haskell/aeson"; | ||
description = "Fast JSON parsing and encoding"; | ||
license = lib.licenses.bsd3; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
{ mkDerivation, aeson, base, lib }: | ||
mkDerivation { | ||
pname = "attoparsec-aeson"; | ||
version = "2.1.0.0"; | ||
sha256 = "b34afb1c330428d9ff7e9e99655ece826ed7a1928dd5880c8127e73a12e906a9"; | ||
libraryHaskellDepends = [ aeson base ]; | ||
doHaddock = false; | ||
homepage = "https://github.com/haskell/aeson"; | ||
description = "Parsing of aeson's Value with attoparsec"; | ||
license = lib.licenses.bsd3; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
{ mkDerivation, assoc, base, comonad, containers | ||
, foldable1-classes-compat, hspec, hspec-discover, lib, QuickCheck | ||
, tagged, template-haskell, th-abstraction, transformers | ||
, transformers-compat | ||
}: | ||
mkDerivation { | ||
pname = "bifunctors"; | ||
version = "5.6.2"; | ||
sha256 = "1086a9285061eed0c2c5d3cb65aa223defd52fca6d0515bb69ddf2dbc3d9697a"; | ||
libraryHaskellDepends = [ | ||
assoc base comonad containers foldable1-classes-compat tagged | ||
template-haskell th-abstraction transformers | ||
]; | ||
testHaskellDepends = [ | ||
base hspec QuickCheck template-haskell transformers | ||
transformers-compat | ||
]; | ||
testToolDepends = [ hspec-discover ]; | ||
homepage = "http://github.com/ekmett/bifunctors/"; | ||
description = "Bifunctors"; | ||
license = lib.licenses.bsd3; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
{ mkDerivation, aeson, array, base, base-orphans, base16-bytestring | ||
, base64-bytestring, bytestring, containers, deepseq, ghc-bignum | ||
, ghc-prim, half, lib, primitive, QuickCheck, random, scientific | ||
, tasty, tasty-hunit, tasty-quickcheck, text, vector | ||
}: | ||
mkDerivation { | ||
pname = "cborg"; | ||
version = "0.2.10.0"; | ||
sha256 = "17fe070c38fc498cab49bcb9d6215b7747d53bedf96502e9bcce9cad73b9c797"; | ||
libraryHaskellDepends = [ | ||
array base bytestring containers deepseq ghc-bignum ghc-prim half | ||
primitive text | ||
]; | ||
testHaskellDepends = [ | ||
aeson array base base-orphans base16-bytestring base64-bytestring | ||
bytestring deepseq half primitive QuickCheck random scientific | ||
tasty tasty-hunit tasty-quickcheck text vector | ||
]; | ||
description = "Concise Binary Object Representation (CBOR)"; | ||
license = lib.licenses.bsd3; | ||
} |
Oops, something went wrong.