Remove unused dependencies (#827)

pull/843/head
Artur Cygan 2 years ago committed by GitHub
parent ce643852d4
commit 7e64a58287
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 24
      default.nix
  2. 4
      package.yaml

@ -39,13 +39,12 @@ let
testInputs = [ newerPkgs.slither-analyzer solc ];
f = { mkDerivation, aeson, ansi-terminal, base, base16-bytestring, binary
, brick, bytestring, cborg, containers, data-dword, data-has, deepseq
, directory, exceptions, filepath, hashable, hevm, html-entities, hpack
, lens, lens-aeson, megaparsec, MonadRandom, mtl, optparse-applicative
, process, random, semver, stm, tasty, tasty-hunit, tasty-quickcheck
, temporary, text, transformers, unix, unliftio, unliftio-core
, unordered-containers, vector, vector-instances, vty, wl-pprint-annotated
, word8, yaml, extra, ListLike
, brick, bytestring, containers, data-dword, data-has, deepseq
, directory, exceptions, filepath, hashable, hevm, hpack, html-entities
, lens, lens-aeson, MonadRandom, mtl, optparse-applicative, process
, random, semver, tasty, tasty-hunit, tasty-quickcheck, temporary, text
, transformers, unix, unliftio, unordered-containers, vector
, vector-instances, vty, word8, yaml, extra, ListLike
}:
mkDerivation rec {
pname = "echidna";
@ -55,12 +54,11 @@ let
isExecutable = true;
libraryHaskellDepends = [
aeson ansi-terminal base base16-bytestring binary brick bytestring
cborg containers data-dword data-has deepseq directory exceptions
filepath hashable hevm html-entities lens lens-aeson megaparsec
MonadRandom mtl optparse-applicative process random stm temporary
text transformers unix unliftio unliftio-core unordered-containers
vector vector-instances vty wl-pprint-annotated word8 yaml extra
ListLike semver
containers data-dword data-has deepseq directory exceptions
filepath hashable hevm html-entities lens lens-aeson ListLike
MonadRandom mtl optparse-applicative process random semver temporary
text transformers unix unliftio unordered-containers vector
vector-instances vty word8 yaml extra ListLike
] ++ (if pkgs.lib.inNixShell then testHaskellDepends else []);
executableHaskellDepends = libraryHaskellDepends;
testHaskellDepends = [ tasty tasty-hunit tasty-quickcheck ];

@ -30,7 +30,6 @@ dependencies:
- lens
- lens-aeson
- ListLike
- megaparsec
- MonadRandom
- mtl
- optparse-applicative
@ -39,7 +38,6 @@ dependencies:
- rosezipper
- semver
- sbv
- stm
- split
- temporary
- text
@ -47,13 +45,11 @@ dependencies:
- time
- unix
- unliftio
- unliftio-core
- utf8-string
- unordered-containers
- vector
- vector-instances
- vty
- wl-pprint-annotated
- word8
- word-wrap
- yaml

Loading…
Cancel
Save