Skip to content

Commit

Permalink
bump tasty
Browse files Browse the repository at this point in the history
  • Loading branch information
tek committed Jun 14, 2024
1 parent 02d256c commit b5922f6
Show file tree
Hide file tree
Showing 4 changed files with 124 additions and 7 deletions.
8 changes: 4 additions & 4 deletions flake.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

20 changes: 18 additions & 2 deletions ops/managed.nix
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
};
tasty = {
lower = "1.4.0.3";
upper = "1.5";
upper = "1.6";
};
tasty-hedgehog = {
lower = "1.1.0.0";
Expand All @@ -47,7 +47,7 @@
hedgehog = "1.4";
incipit-base = "0.6.0.0";
parsec = "3.1.17.0";
tasty = "1.4.3";
tasty = "1.5";
tasty-hedgehog = "1.4.0.2";
template-haskell = "2.21.0.0";
};
Expand Down Expand Up @@ -80,6 +80,22 @@
version = "0.6.0.0";
hash = "1hck35yfy0dcgimgnd90w02zvv7x7k456bljrbx2mwxalnhav9gf";
};
indexed-traversable-instances = {
version = "0.1.1.2";
hash = "1mmkklfpagv855p12dqq0r6xwg0v6dc1gj1n3nvzzy4b909ajgd0";
};
tasty = {
version = "1.5";
hash = "0v2xrmrxss6zkrny5zlxjanhp4a3zwsx7v9iszj62wqgcc13zva9";
};
tasty-hedgehog = {
version = "1.4.0.2";
hash = "04kg2qdnsqzzmj3xggy2jcgidlp21lsjkz4sfnbq7b1yhrv2vbbc";
};
time-compat = {
version = "1.9.6.1";
hash = "0ika8xx9zff8rwaabs17q5c30c1b9ii89jhbvahi5nk7rs0cd5fs";
};
};
lower = {
OneTuple = {
Expand Down
101 changes: 101 additions & 0 deletions ops/overrides.nix
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,107 @@ mkDerivation {
}
;
}
;
indexed-traversable-instances = {
meta = {
sha256 = "1mmkklfpagv855p12dqq0r6xwg0v6dc1gj1n3nvzzy4b909ajgd0";
ver = "0.1.1.2";
};
drv = { mkDerivation, base, containers, indexed-traversable, lib
, OneTuple, QuickCheck, quickcheck-instances, tagged, tasty
, tasty-quickcheck, transformers, unordered-containers, vector
}:
mkDerivation {
pname = "indexed-traversable-instances";
version = "0.1.1.2";
src = /nix/store/v0g4ddbkq1d9frb9j4pc0ga1vs6dlm2b-source;
libraryHaskellDepends = [
base indexed-traversable OneTuple tagged unordered-containers
vector
];
testHaskellDepends = [
base containers indexed-traversable OneTuple QuickCheck
quickcheck-instances tasty tasty-quickcheck transformers
unordered-containers vector
];
description = "More instances of FunctorWithIndex, FoldableWithIndex, TraversableWithIndex";
license = lib.licenses.bsd2;
}
;
}
;
tasty = {
meta = {
sha256 = "0v2xrmrxss6zkrny5zlxjanhp4a3zwsx7v9iszj62wqgcc13zva9";
ver = "1.5";
};
drv = { mkDerivation, ansi-terminal, base, containers, lib
, optparse-applicative, stm, tagged, transformers, unix
}:
mkDerivation {
pname = "tasty";
version = "1.5";
src = /nix/store/z745l4r4wk305rfiz8wpc3f89288fi8r-source;
libraryHaskellDepends = [
ansi-terminal base containers optparse-applicative stm tagged
transformers unix
];
homepage = "https://github.com/UnkindPartition/tasty";
description = "Modern and extensible testing framework";
license = lib.licenses.mit;
}
;
}
;
tasty-hedgehog = {
meta = {
sha256 = "04kg2qdnsqzzmj3xggy2jcgidlp21lsjkz4sfnbq7b1yhrv2vbbc";
ver = "1.4.0.2";
};
drv = { mkDerivation, base, hedgehog, lib, tagged, tasty
, tasty-expected-failure
}:
mkDerivation {
pname = "tasty-hedgehog";
version = "1.4.0.2";
src = /nix/store/b9mxq4fh65sif22q9a4g041jvp847cyc-source;
libraryHaskellDepends = [ base hedgehog tagged tasty ];
testHaskellDepends = [
base hedgehog tasty tasty-expected-failure
];
homepage = "https://github.com/qfpl/tasty-hedgehog";
description = "Integration for tasty and hedgehog";
license = lib.licenses.bsd3;
}
;
}
;
time-compat = {
meta = {
sha256 = "0ika8xx9zff8rwaabs17q5c30c1b9ii89jhbvahi5nk7rs0cd5fs";
ver = "1.9.6.1";
};
drv = { mkDerivation, base, base-compat, base-orphans, deepseq, hashable
, HUnit, lib, QuickCheck, tagged, tasty, tasty-hunit
, tasty-quickcheck, time
}:
mkDerivation {
pname = "time-compat";
version = "1.9.6.1";
src = /nix/store/r5pf6kwybjyjpwh4knlr4j6vr2lz5nym-source;
libraryHaskellDepends = [
base base-orphans deepseq hashable time
];
testHaskellDepends = [
base base-compat deepseq hashable HUnit QuickCheck tagged tasty
tasty-hunit tasty-quickcheck time
];
homepage = "https://github.com/haskellari/time-compat";
description = "Compatibility package for time";
license = lib.licenses.bsd3;
}
;
}
;
};
lower = {
Expand Down
2 changes: 1 addition & 1 deletion packages/exon/exon.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ test-suite exon-test
, exon
, hedgehog >=1.1 && <1.5
, incipit-base >=0.5.0.0 && <0.7
, tasty >=1.4.0.3 && <1.5
, tasty >=1.4.0.3 && <1.6
, tasty-hedgehog >=1.1.0.0 && <1.5
, template-haskell >=2.18.0.0 && <2.22
mixins:
Expand Down

0 comments on commit b5922f6

Please sign in to comment.