Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found

Target

Select target project
  • tchoutri/horizon-platform
  • raoulhc/horizon-platform
  • jonge/horizon-platform
  • package-sets/horizon-platform
Show changes
Showing
with 42 additions and 412 deletions
{ mkDerivation, base, containers, deepseq, ghc-prim, lib, tasty }:
mkDerivation {
pname = "tasty-bench";
version = "0.3.4";
sha256 = "4de671ebafafe5cba7ba14a4503f25ac080a8eedc4e9f815b5cb3ba8f8a9ce1e";
isLibrary = true;
isExecutable = false;
enableSeparateDataOutput = false;
libraryHaskellDepends = [ base containers deepseq ghc-prim tasty ];
benchmarkHaskellDepends = [ base ];
enableLibraryProfiling = true;
enableExecutableProfiling = true;
doHaddock = false;
jailbreak = true;
doCheck = false;
doBenchmark = false;
hyperlinkSource = false;
homepage = "https://github.com/Bodigrim/tasty-bench";
description = "Featherlight benchmark framework";
license = lib.licenses.mit;
broken = false;
}
\ No newline at end of file
{ mkDerivation, base, hedgehog, lib, tagged, tasty, tasty-golden
, tasty-hedgehog, tasty-hunit, unbounded-delays
}:
mkDerivation {
pname = "tasty-expected-failure";
version = "0.12.3";
sha256 = "cb07cc5ca62a6fd673ef54ae70b4bc5f9c12662fe835bea1f38b944684ee8f7e";
isLibrary = true;
isExecutable = false;
enableSeparateDataOutput = false;
libraryHaskellDepends = [ base tagged tasty unbounded-delays ];
testHaskellDepends = [
base hedgehog tasty tasty-golden tasty-hedgehog tasty-hunit
];
enableLibraryProfiling = true;
enableExecutableProfiling = true;
doHaddock = false;
jailbreak = true;
doCheck = false;
doBenchmark = false;
hyperlinkSource = false;
homepage = "http://github.com/nomeata/tasty-expected-failure";
description = "Mark tasty tests as failure expected";
license = lib.licenses.mit;
broken = false;
}
\ No newline at end of file
{ mkDerivation, base, hedgehog, lib, tagged, tasty
, tasty-expected-failure
}:
mkDerivation {
pname = "tasty-hedgehog";
version = "1.4.0.1";
sha256 = "c8ad782115f5068c3a1749960db6ca32a41c981369dc05710f13825af12eddee";
isLibrary = true;
isExecutable = false;
enableSeparateDataOutput = false;
libraryHaskellDepends = [ base hedgehog tagged tasty ];
testHaskellDepends = [
base hedgehog tasty tasty-expected-failure
];
enableLibraryProfiling = true;
enableExecutableProfiling = true;
doHaddock = false;
jailbreak = true;
doCheck = false;
doBenchmark = false;
hyperlinkSource = false;
homepage = "https://github.com/qfpl/tasty-hedgehog";
description = "Integration for tasty and hedgehog";
license = lib.licenses.bsd3;
broken = false;
}
\ No newline at end of file
......@@ -3,8 +3,8 @@
}:
mkDerivation {
pname = "tasty-hslua";
version = "1.1.0";
sha256 = "f53dd79c496effff3be54d5706ecdcf3117d04120795f9e54fc80f5ab0097211";
version = "1.1.1";
sha256 = "aba8131ed63d551d5016f123f3c19ebdadb3ae6eb0cedb5fb773f8c12729d818";
isLibrary = true;
isExecutable = false;
enableSeparateDataOutput = false;
......@@ -13,7 +13,7 @@ mkDerivation {
];
enableLibraryProfiling = true;
enableExecutableProfiling = true;
doHaddock = false;
doHaddock = true;
jailbreak = true;
doCheck = false;
doBenchmark = false;
......
{ mkDerivation, QuickCheck, base, hspec, hspec-core, lib, tasty
, tasty-quickcheck, tasty-smallcheck
}:
mkDerivation {
pname = "tasty-hspec";
version = "1.2.0.3";
sha256 = "9d5d6febcf5f723ecee79a088d13f8550297aead959ca6e52d5b03a598de0d94";
revision = "1";
editedCabalFile = "01sc5gmij3280b63jpjcz0a2lq045dj5ay46yq9i896cyka6gs6r";
isLibrary = true;
isExecutable = false;
enableSeparateDataOutput = false;
libraryHaskellDepends = [
base hspec hspec-core QuickCheck tasty tasty-quickcheck
tasty-smallcheck
];
enableLibraryProfiling = true;
enableExecutableProfiling = true;
doHaddock = false;
jailbreak = true;
doCheck = false;
doBenchmark = false;
hyperlinkSource = false;
homepage = "https://github.com/mitchellwrosen/tasty-hspec";
description = "Hspec support for the Tasty test framework";
license = lib.licenses.bsd3;
broken = false;
}
\ No newline at end of file
{ mkDerivation, base, call-stack, fetchgit, lib, tasty }:
mkDerivation {
pname = "tasty-hunit";
version = "0.10.0.2";
src = fetchgit {
url = "https://github.com/UnkindPartition/tasty";
sha256 = "0xx85l6g6xxxyfjmlxz5mfli75v77js55a9hr0n7ghrypg2lpj55";
rev = "226c35f468be389536fbb9471904a113d1586da6";
fetchSubmodules = true;
};
postUnpack = "sourceRoot+=/hunit/; echo source root reset to $sourceRoot";
isLibrary = true;
isExecutable = false;
enableSeparateDataOutput = false;
libraryHaskellDepends = [ base call-stack tasty ];
enableLibraryProfiling = true;
enableExecutableProfiling = true;
doHaddock = false;
jailbreak = true;
doCheck = false;
doBenchmark = false;
hyperlinkSource = false;
homepage = "https://github.com/UnkindPartition/tasty";
description = "HUnit support for the Tasty test framework";
license = lib.licenses.mit;
broken = false;
}
\ No newline at end of file
{ mkDerivation, base, ghc, inspection-testing, lib, tasty
, template-haskell
}:
mkDerivation {
pname = "tasty-inspection-testing";
version = "0.2";
sha256 = "1f8fa87b808b660c1390406c134758ae269afe9bf0682394e88ebf42ca5bbcbd";
revision = "1";
editedCabalFile = "1539r8zxbpwf1ia48syslq2j5v6l8czigp4fjwfwdcsf8x5k9j6g";
isLibrary = true;
isExecutable = false;
enableSeparateDataOutput = false;
libraryHaskellDepends = [
base ghc inspection-testing tasty template-haskell
];
enableLibraryProfiling = true;
enableExecutableProfiling = true;
doHaddock = false;
jailbreak = true;
doCheck = false;
doBenchmark = false;
hyperlinkSource = false;
homepage = "https://github.com/Bodigrim/tasty-inspection-testing";
description = "Inspection testing support for tasty";
license = lib.licenses.mit;
broken = false;
}
\ No newline at end of file
{ mkDerivation, base, bytestring, lib, mtl, tasty, tasty-hunit
, tasty-quickcheck
}:
mkDerivation {
pname = "tasty-kat";
version = "0.0.3";
sha256 = "a72501f0f77db372648566bbba1dd1d6d0d0c975b42238875d663313e9a5db93";
isLibrary = true;
isExecutable = false;
enableSeparateDataOutput = false;
libraryHaskellDepends = [ base bytestring tasty ];
testHaskellDepends = [
base bytestring mtl tasty tasty-hunit tasty-quickcheck
];
enableLibraryProfiling = true;
enableExecutableProfiling = true;
doHaddock = false;
jailbreak = true;
doCheck = false;
doBenchmark = false;
hyperlinkSource = false;
homepage = "https://github.com/vincenthz/tasty-kat";
description = "Known Answer Tests (KAT) framework for tasty";
license = lib.licenses.mit;
broken = false;
}
\ No newline at end of file
......@@ -4,8 +4,10 @@
}:
mkDerivation {
pname = "tasty-lua";
version = "1.1.0";
sha256 = "33434b2a41080120886be023d43d1b52b18367fecc8693f4e5d06d28c855c7ae";
version = "1.1.1";
sha256 = "06f8acfa305cf70beaed6b2d11cecfd547a218fdf664a2e3b5cdf2979410c3a0";
revision = "1";
editedCabalFile = "180jy8dhr7mdfgj5xgnwddm5lh8ahbvs78y07g9zgpsxkdnm5ghn";
isLibrary = true;
isExecutable = false;
enableSeparateDataOutput = false;
......@@ -19,7 +21,7 @@ mkDerivation {
];
enableLibraryProfiling = true;
enableExecutableProfiling = true;
doHaddock = false;
doHaddock = true;
jailbreak = true;
doCheck = false;
doBenchmark = false;
......
{ mkDerivation, QuickCheck, base, lib, optparse-applicative
, pcre-light, random, tagged, tasty, tasty-hunit
}:
mkDerivation {
pname = "tasty-quickcheck";
version = "0.10.2";
sha256 = "b4884c815db26a543ee1062664ee051ac89d51b2c2526d30029c6eb95b36cce2";
isLibrary = true;
isExecutable = false;
enableSeparateDataOutput = false;
libraryHaskellDepends = [
base optparse-applicative QuickCheck random tagged tasty
];
testHaskellDepends = [ base pcre-light tasty tasty-hunit ];
enableLibraryProfiling = true;
enableExecutableProfiling = true;
doHaddock = false;
jailbreak = true;
doCheck = false;
doBenchmark = false;
hyperlinkSource = false;
homepage = "https://github.com/UnkindPartition/tasty";
description = "QuickCheck support for the Tasty test framework";
license = lib.licenses.mit;
broken = false;
}
\ No newline at end of file
......@@ -3,10 +3,10 @@
}:
mkDerivation {
pname = "tasty-rerun";
version = "1.1.18";
sha256 = "fa74ac10bc23fd3e443362427236a9c543f92b6aaf2e1bc8e959ecd47fb98c69";
revision = "4";
editedCabalFile = "1i2van23247h62sz94kjiyyb6xvz88z6kkjqqsbxi4m74pga27hn";
version = "1.1.19";
sha256 = "6f3df401f724ea0978ade8c18f8a7a5f1032ff7c5bf016885833135dbd2c7235";
revision = "3";
editedCabalFile = "0s83ylr3wj2whzia7s4yb0cihbpz762nfdmg2kwr3nalpd8j1lzk";
isLibrary = true;
isExecutable = false;
enableSeparateDataOutput = false;
......@@ -16,7 +16,7 @@ mkDerivation {
];
enableLibraryProfiling = true;
enableExecutableProfiling = true;
doHaddock = false;
doHaddock = true;
jailbreak = true;
doCheck = false;
doBenchmark = false;
......
{ mkDerivation, ansi-terminal, async, base, bytestring, containers
, deepseq, directory, filepath, lib, mtl, optparse-applicative
, process, process-extras, regex-tdfa, silently, stm, tagged, tasty
, tasty-hunit, temporary, text, transformers
}:
mkDerivation {
pname = "tasty-silver";
version = "3.3.1.1";
sha256 = "35fde58705e5041671fd1009c1fa79823ffdd60bca326b054e5bc6c880fe408e";
isLibrary = true;
isExecutable = false;
enableSeparateDataOutput = false;
libraryHaskellDepends = [
ansi-terminal async base bytestring containers deepseq directory
filepath mtl optparse-applicative process process-extras regex-tdfa
silently stm tagged tasty temporary text transformers
];
testHaskellDepends = [
base directory filepath process silently tasty tasty-hunit
temporary transformers
];
enableLibraryProfiling = true;
enableExecutableProfiling = true;
doHaddock = false;
jailbreak = true;
doCheck = false;
doBenchmark = false;
hyperlinkSource = false;
homepage = "https://github.com/phile314/tasty-silver";
description = "A fancy test runner, including support for golden tests";
license = lib.licenses.mit;
broken = false;
}
\ No newline at end of file
{ mkDerivation, base, lib, optparse-applicative, smallcheck, tagged
, tasty
}:
mkDerivation {
pname = "tasty-smallcheck";
version = "0.8.2";
sha256 = "d5cbd7a2a7100e4afd3aaac01a8fa1b7814fb074d93aeff1b51240b687e54f33";
revision = "1";
editedCabalFile = "0033ha2w9rzc1rxpzh1dkfdrn256i5lvb41pqbdh2i6kli0v5vmh";
isLibrary = true;
isExecutable = false;
enableSeparateDataOutput = false;
libraryHaskellDepends = [
base optparse-applicative smallcheck tagged tasty
];
enableLibraryProfiling = true;
enableExecutableProfiling = true;
doHaddock = false;
jailbreak = true;
doCheck = false;
doBenchmark = false;
hyperlinkSource = false;
homepage = "https://github.com/feuerbach/tasty";
description = "SmallCheck support for the Tasty test framework";
license = lib.licenses.mit;
broken = false;
}
\ No newline at end of file
{ mkDerivation, base, haskell-src-exts, lib, tasty, tasty-hunit
, template-haskell
}:
mkDerivation {
pname = "tasty-th";
version = "0.1.7";
sha256 = "435aac8f317e2f8cb1aa96fb3f7c9003c1ac28e6d3ca4c3c23f5142178de512c";
isLibrary = true;
isExecutable = false;
enableSeparateDataOutput = false;
libraryHaskellDepends = [
base haskell-src-exts tasty template-haskell
];
testHaskellDepends = [ base tasty-hunit ];
enableLibraryProfiling = true;
enableExecutableProfiling = true;
doHaddock = false;
jailbreak = true;
doCheck = false;
doBenchmark = false;
hyperlinkSource = false;
homepage = "http://github.com/bennofs/tasty-th";
description = "Automatic tasty test case discovery using TH";
license = lib.licenses.bsd3;
broken = false;
}
\ No newline at end of file
{ mkDerivation, HUnit, base, bytestring, http-types, lib, tasty
, wai, wai-extra
}:
mkDerivation {
pname = "tasty-wai";
version = "0.1.2.0";
sha256 = "6f6f224d6dee893ce550f512832389a9ae0e490917a99b5362c9a4f73f16dca3";
revision = "1";
editedCabalFile = "14pz0mvpy2vwdhapn68pmwrpq7pvky87mkph44bc6vcbqy1jnk5c";
isLibrary = true;
isExecutable = false;
enableSeparateDataOutput = false;
libraryHaskellDepends = [
base bytestring http-types HUnit tasty wai wai-extra
];
testHaskellDepends = [ base http-types tasty wai ];
enableLibraryProfiling = true;
enableExecutableProfiling = true;
doHaddock = false;
jailbreak = true;
doCheck = false;
doBenchmark = false;
hyperlinkSource = false;
description = "Test 'wai' endpoints via Test.Tasty";
license = lib.licenses.bsd3;
broken = false;
}
\ No newline at end of file
{ mkDerivation, ansi-terminal, base, containers, lib
, optparse-applicative, stm, tagged, transformers, unix
}:
mkDerivation {
pname = "tasty";
version = "1.4.3";
sha256 = "f420da9560267271dce8a0007a1cb77c06987f0d129eb0f613110ce61f71cb00";
isLibrary = true;
isExecutable = false;
enableSeparateDataOutput = false;
libraryHaskellDepends = [
ansi-terminal base containers optparse-applicative stm tagged
transformers unix
];
enableLibraryProfiling = true;
enableExecutableProfiling = true;
doHaddock = false;
jailbreak = true;
doCheck = false;
doBenchmark = false;
hyperlinkSource = false;
homepage = "https://github.com/UnkindPartition/tasty";
description = "Modern and extensible testing framework";
license = lib.licenses.mit;
broken = false;
}
\ No newline at end of file
{ mkDerivation, base, base-compat, binary, deepseq
, foldable1-classes-compat, lib, reducers, semigroups, tasty
, tasty-quickcheck, transformers, vector, vector-algorithms
{ mkDerivation, base, base-compat, binary, deepseq, lib, reducers
, semigroups, tasty, tasty-quickcheck, transformers, vector
, vector-algorithms
}:
mkDerivation {
pname = "tdigest";
version = "0.3";
sha256 = "6ba5e689297f22e45e8b240a27397285cbf76c65b631f58c5d48f579048a4d0a";
revision = "1";
editedCabalFile = "1pcm1gdn28syhq6gws3ss15dldnvyvy4l2mqbqmp46gv3hzqnw6b";
isLibrary = true;
isExecutable = false;
enableSeparateDataOutput = false;
libraryHaskellDepends = [
base base-compat binary deepseq foldable1-classes-compat reducers
transformers vector vector-algorithms
base base-compat binary deepseq reducers transformers vector
vector-algorithms
];
testHaskellDepends = [
base base-compat binary deepseq semigroups tasty tasty-quickcheck
......@@ -19,7 +21,7 @@ mkDerivation {
];
enableLibraryProfiling = true;
enableExecutableProfiling = true;
doHaddock = false;
doHaddock = true;
jailbreak = true;
doCheck = false;
doBenchmark = false;
......
{ mkDerivation, base, lib, template-haskell }:
mkDerivation {
pname = "lift-type";
version = "0.1.1.1";
sha256 = "10d81032a69175a9c0c6f97358962ac8e5663b1b9a798fc96c7ec227aad7370d";
pname = "template-haskell-compat-v0208";
version = "0.1.9.3";
sha256 = "92463b896ddc2ae13cb826e816b832958cea6bf8a8ed613b6a7854c48bbc2d62";
isLibrary = true;
isExecutable = false;
enableSeparateDataOutput = false;
libraryHaskellDepends = [ base template-haskell ];
testHaskellDepends = [ base template-haskell ];
enableLibraryProfiling = true;
enableExecutableProfiling = true;
doHaddock = false;
doHaddock = true;
jailbreak = true;
doCheck = false;
doBenchmark = false;
hyperlinkSource = false;
homepage = "https://github.com/parsonsmatt/lift-type#readme";
description = "Lift a type from a Typeable constraint to a Template Haskell type";
license = lib.licenses.bsd3;
homepage = "https://github.com/nikita-volkov/template-haskell-compat-v0208";
description = "Backward-compatibility layer for Template Haskell newer than 2.8";
license = lib.licenses.mit;
broken = false;
}
\ No newline at end of file
{ mkDerivation, base, base-compat, directory, exceptions, filepath
, lib, random, tasty, tasty-hunit, transformers, unix
}:
mkDerivation {
pname = "temporary";
version = "1.3";
sha256 = "8c442993694b5ffca823ce864af95bd2841fb5264ee511c61cf48cc71d879890";
isLibrary = true;
isExecutable = false;
enableSeparateDataOutput = false;
libraryHaskellDepends = [
base directory exceptions filepath random transformers unix
];
testHaskellDepends = [
base base-compat directory filepath tasty tasty-hunit unix
];
enableLibraryProfiling = true;
enableExecutableProfiling = true;
doHaddock = false;
jailbreak = true;
doCheck = false;
doBenchmark = false;
hyperlinkSource = false;
homepage = "https://github.com/feuerbach/temporary";
description = "Portable temporary file and directory support";
license = lib.licenses.bsd3;
broken = false;
}
\ No newline at end of file
{ mkDerivation, base, lib }:
mkDerivation {
pname = "terminal-size";
version = "0.3.4";
sha256 = "b0f070d6926cdaacf3a412c5518e5c23afca1e0ed00808a5328c96e468b67f49";
isLibrary = true;
isExecutable = false;
enableSeparateDataOutput = false;
libraryHaskellDepends = [ base ];
enableLibraryProfiling = true;
enableExecutableProfiling = true;
doHaddock = false;
jailbreak = true;
doCheck = false;
doBenchmark = false;
hyperlinkSource = false;
description = "Get terminal window height and width";
license = lib.licenses.bsd3;
broken = false;
}
\ No newline at end of file