diff --git a/horizon.dhall b/horizon.dhall index 0211b166c47411aeebddc5ca5de1ccd5e99b44ba..998d5938aebc532d2a2188bf1a68d61b5cc95c1f 100644 --- a/horizon.dhall +++ b/horizon.dhall @@ -498,7 +498,7 @@ let packages = , hedgehog-quickcheck = H.callHackage "hedgehog-quickcheck" "0.1.1" , heredoc = H.callHackage "heredoc" "0.2.0.0" , hex-text = H.callHackage "hex-text" "0.1.0.8" - , hie-bios = H.callHackage "hie-bios" "0.12.0" + , hie-bios = H.callHackage "hie-bios" "0.11.0" , hie-compat = H.callHackage "hie-compat" "0.3.1.0" , hiedb = H.callHackage "hiedb" "0.4.2.0" , hinotify = H.callHackage "hinotify" "0.4.1" diff --git a/pkgs/hie-bios.nix b/pkgs/hie-bios.nix index a32305e79c8bf405915db820ce73656856f1abf3..8a86659c99bf2d0f557d66d019f8d1891c128513 100644 --- a/pkgs/hie-bios.nix +++ b/pkgs/hie-bios.nix @@ -1,33 +1,34 @@ { mkDerivation, aeson, base, base16-bytestring, bytestring -, co-log-core, conduit, conduit-extra, cryptohash-sha1, deepseq -, directory, exceptions, extra, file-embed, filepath, ghc, lib -, optparse-applicative, prettyprinter, tasty -, tasty-expected-failure, tasty-hunit, template-haskell, temporary -, text, time, transformers, unix-compat, unordered-containers, yaml +, co-log-core, conduit, conduit-extra, containers, cryptohash-sha1 +, deepseq, directory, exceptions, extra, file-embed, filepath, ghc +, lib, optparse-applicative, prettyprinter, process, tagged, tasty +, tasty-expected-failure, tasty-hunit, temporary, text, time +, transformers, unix-compat, unordered-containers, vector, yaml }: mkDerivation { pname = "hie-bios"; - version = "0.12.0"; - sha256 = "64eb00bb32dec259d0b92c63440bd29c72621683824693c082f643e398db2688"; - revision = "1"; - editedCabalFile = "18cmkzrq45schidxrn571b0x6x4vlmwkpzq0nwm97p4gsqvvwj48"; + version = "0.11.0"; + sha256 = "9708bf4309e904771bf590dd4e683e0b5c18e486ed499be8ceff5119a25f0eef"; + revision = "3"; + editedCabalFile = "0axmy522cfk92c5hwrqhkqswlxlm26m821b64rnh32666sxfdhy1"; isLibrary = true; isExecutable = true; enableSeparateDataOutput = false; libraryHaskellDepends = [ aeson base base16-bytestring bytestring co-log-core conduit - conduit-extra cryptohash-sha1 deepseq directory exceptions extra - file-embed filepath ghc prettyprinter template-haskell temporary - text time transformers unix-compat unordered-containers yaml + conduit-extra containers cryptohash-sha1 deepseq directory + exceptions extra file-embed filepath ghc prettyprinter process + temporary text time transformers unix-compat unordered-containers + vector yaml ]; executableHaskellDepends = [ - base co-log-core directory filepath optparse-applicative + base co-log-core directory filepath ghc optparse-applicative prettyprinter ]; testHaskellDepends = [ - aeson base co-log-core directory extra filepath ghc prettyprinter - tasty tasty-expected-failure tasty-hunit temporary transformers - yaml + aeson base directory extra filepath ghc tagged tasty + tasty-expected-failure tasty-hunit temporary text transformers + unordered-containers yaml ]; enableLibraryProfiling = true; enableExecutableProfiling = true;