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
  • jonge/horizon-platform
  • raoulhc/horizon-platform
  • package-sets/horizon-platform
Show changes
Showing
with 140 additions and 705 deletions
{ mkDerivation
, aeson
, autodocodec
, base
, bytestring
, lib
, servant-multipart
, servant-multipart-api
, text
, unordered-containers
, vector
{ mkDerivation, aeson, autodocodec, base, bytestring, lib
, servant-multipart, servant-multipart-api, text
, unordered-containers, vector
}:
mkDerivation {
pname = "autodocodec-servant-multipart";
......@@ -18,19 +10,12 @@ mkDerivation {
isExecutable = false;
enableSeparateDataOutput = false;
libraryHaskellDepends = [
aeson
autodocodec
base
bytestring
servant-multipart
servant-multipart-api
text
unordered-containers
vector
aeson autodocodec base bytestring servant-multipart
servant-multipart-api text unordered-containers vector
];
enableLibraryProfiling = true;
enableExecutableProfiling = true;
doHaddock = false;
doHaddock = true;
jailbreak = true;
doCheck = false;
doBenchmark = false;
......@@ -39,4 +24,4 @@ mkDerivation {
description = "Autodocodec interpreters for Servant Multipart";
license = lib.licenses.mit;
broken = false;
}
}
\ No newline at end of file
{ mkDerivation
, autodocodec
, autodocodec-schema
, base
, bytestring
, containers
, lib
, path
, path-io
, safe-coloured-text
, scientific
, text
, unordered-containers
, vector
, yaml
}:
mkDerivation {
pname = "autodocodec-yaml";
version = "0.2.0.2";
sha256 = "3d5f811541866f95f44842227bc5d643e7dfa316f1b3075c22d9f3dc6fcd9698";
isLibrary = true;
isExecutable = false;
enableSeparateDataOutput = false;
libraryHaskellDepends = [
autodocodec
autodocodec-schema
base
bytestring
containers
path
path-io
safe-coloured-text
scientific
text
unordered-containers
vector
yaml
];
enableLibraryProfiling = true;
enableExecutableProfiling = true;
doHaddock = false;
jailbreak = true;
doCheck = false;
doBenchmark = false;
hyperlinkSource = false;
homepage = "https://github.com/NorfairKing/autodocodec#readme";
description = "Autodocodec interpreters for yaml";
license = lib.licenses.mit;
broken = false;
}
{ mkDerivation
, aeson
, base
, bytestring
, containers
, hashable
, lib
, mtl
, scientific
, text
, time
, unordered-containers
, validity
, validity-scientific
, vector
}:
mkDerivation {
pname = "autodocodec";
version = "0.2.0.1";
sha256 = "4f4e2c2c57608a7e3060247a0f1b86e3f1257c2ba15af3c4649b9d87a6155bde";
isLibrary = true;
isExecutable = false;
enableSeparateDataOutput = false;
libraryHaskellDepends = [
aeson
base
bytestring
containers
hashable
mtl
scientific
text
time
unordered-containers
validity
validity-scientific
vector
];
enableLibraryProfiling = true;
enableExecutableProfiling = true;
doHaddock = false;
jailbreak = true;
doCheck = false;
doBenchmark = false;
hyperlinkSource = false;
homepage = "https://github.com/NorfairKing/autodocodec#readme";
description = "Self-documenting encoder and decoder";
license = lib.licenses.mit;
broken = false;
}
{ mkDerivation, Cabal, base, directory, filepath, lib }:
{ mkDerivation, Cabal-syntax, base, directory, filepath, lib }:
mkDerivation {
pname = "autoexporter";
version = "2.0.0.2";
sha256 = "f1de55da144f0bfaf1e1d9194684d61cd0a7ff825b3a7aae687631daa5a3a880";
version = "2.0.0.12";
sha256 = "ca82f0b40899fcee465aa053b5b36da0cffcaa2103fecfc4c385aff6e6dd96c6";
isLibrary = true;
isExecutable = true;
enableSeparateDataOutput = false;
libraryHaskellDepends = [ base Cabal directory filepath ];
executableHaskellDepends = [ base Cabal directory filepath ];
libraryHaskellDepends = [ base Cabal-syntax directory filepath ];
executableHaskellDepends = [ base ];
enableLibraryProfiling = true;
enableExecutableProfiling = true;
doHaddock = false;
doHaddock = true;
jailbreak = true;
doCheck = false;
doBenchmark = false;
......@@ -18,4 +18,4 @@ mkDerivation {
description = "Automatically re-export modules";
license = lib.licenses.mit;
broken = false;
}
}
\ No newline at end of file
{ mkDerivation
, QuickCheck
, base
, distributive
, lib
, tasty
, tasty-hunit
, tasty-quickcheck
, transformers
}:
mkDerivation {
pname = "barbies";
version = "2.0.3.1";
sha256 = "a13c1fd05e3e006bd0874d77e1930c5225765e83fa9925b2c5c1df314559df3d";
isLibrary = true;
isExecutable = false;
enableSeparateDataOutput = false;
libraryHaskellDepends = [ base distributive transformers ];
testHaskellDepends = [
base
distributive
QuickCheck
tasty
tasty-hunit
tasty-quickcheck
];
enableLibraryProfiling = true;
enableExecutableProfiling = true;
doHaddock = false;
jailbreak = true;
doCheck = false;
doBenchmark = false;
hyperlinkSource = false;
homepage = "https://github.com/jcpetruzza/barbies#readme";
description = "Classes for working with types that can change clothes";
license = lib.licenses.bsd3;
broken = false;
}
{ mkDerivation
, QuickCheck
, base
, base-compat
, ghc-prim
, hspec
, hspec-discover
, lib
}:
mkDerivation {
pname = "base-compat-batteries";
version = "0.12.2";
sha256 = "ede9092e07f904e0759160bf1ecd3fb7eb043bae6dc89a37c3dc94829ec5eb99";
isLibrary = true;
isExecutable = false;
enableSeparateDataOutput = false;
libraryHaskellDepends = [ base base-compat ghc-prim ];
testHaskellDepends = [ base hspec QuickCheck ];
testToolDepends = [ hspec-discover ];
enableLibraryProfiling = true;
enableExecutableProfiling = true;
doHaddock = false;
jailbreak = true;
doCheck = false;
doBenchmark = false;
hyperlinkSource = false;
description = "base-compat with extra batteries";
license = lib.licenses.mit;
broken = false;
}
{ mkDerivation, base, ghc-prim, lib, unix }:
mkDerivation {
pname = "base-compat";
version = "0.12.2";
sha256 = "a62adc883a5ac436f80e4ae02c3c56111cf1007492f267c291139a668d2150bd";
isLibrary = true;
isExecutable = false;
enableSeparateDataOutput = false;
libraryHaskellDepends = [ base ghc-prim unix ];
enableLibraryProfiling = true;
enableExecutableProfiling = true;
doHaddock = false;
jailbreak = true;
doCheck = false;
doBenchmark = false;
hyperlinkSource = false;
description = "A compatibility layer for base";
license = lib.licenses.mit;
broken = false;
}
{ mkDerivation
, QuickCheck
, base
, ghc-prim
, hspec
, hspec-discover
, lib
}:
mkDerivation {
pname = "base-orphans";
version = "0.8.7";
sha256 = "888fd67f0dbe932778f5b170922ce80d0dcab1680ee98f1d6fcc362f20d9e447";
isLibrary = true;
isExecutable = false;
enableSeparateDataOutput = false;
libraryHaskellDepends = [ base ghc-prim ];
testHaskellDepends = [ base hspec QuickCheck ];
testToolDepends = [ hspec-discover ];
enableLibraryProfiling = true;
enableExecutableProfiling = true;
doHaddock = false;
jailbreak = true;
doCheck = false;
doBenchmark = false;
hyperlinkSource = false;
homepage = "https://github.com/haskell-compat/base-orphans#readme";
description = "Backwards-compatible orphan instances for base";
license = lib.licenses.mit;
broken = false;
}
{ mkDerivation, base, lib }:
mkDerivation {
pname = "base-prelude";
version = "1.6.1";
sha256 = "729034d1d83d8eacdf84399f97c4f9b99bb710555ddc1e0b9f196f5dd0347d65";
version = "1.6.1.1";
sha256 = "8108af03f2c9d6dc4fe9e7033afc53f0472d1e520261cef0ec3e420b29521dd3";
isLibrary = true;
isExecutable = false;
enableSeparateDataOutput = false;
libraryHaskellDepends = [ base ];
enableLibraryProfiling = true;
enableExecutableProfiling = true;
doHaddock = false;
doHaddock = true;
jailbreak = true;
doCheck = false;
doBenchmark = false;
......@@ -18,4 +18,4 @@ mkDerivation {
description = "Featureful preludes formed solely from the \"base\" package";
license = lib.licenses.mit;
broken = false;
}
}
\ No newline at end of file
{ mkDerivation
, HUnit
, QuickCheck
, base
, bytestring
, criterion
, deepseq
, lib
, test-framework
, test-framework-hunit
, test-framework-quickcheck2
}:
mkDerivation {
pname = "base16-bytestring";
version = "1.0.2.0";
sha256 = "1d5a91143ef0e22157536093ec8e59d226a68220ec89378d5dcaeea86472c784";
isLibrary = true;
isExecutable = false;
enableSeparateDataOutput = false;
libraryHaskellDepends = [ base bytestring ];
testHaskellDepends = [
base
bytestring
HUnit
QuickCheck
test-framework
test-framework-hunit
test-framework-quickcheck2
];
benchmarkHaskellDepends = [ base bytestring criterion deepseq ];
enableLibraryProfiling = true;
enableExecutableProfiling = true;
doHaddock = false;
jailbreak = true;
doCheck = false;
doBenchmark = false;
hyperlinkSource = false;
homepage = "http://github.com/haskell/base16-bytestring";
description = "RFC 4648-compliant Base16 encodings for ByteStrings";
license = lib.licenses.bsd3;
broken = false;
}
{ mkDerivation
, QuickCheck
, base
, criterion
, exceptions
, lib
, mmorph
, mtl
, optparse-applicative
, test-framework
, test-framework-quickcheck2
, transformers
, void
{ mkDerivation, QuickCheck, base, bytestring, criterion, deepseq
, lib, memory, random-bytestring, tasty, tasty-hunit
, tasty-quickcheck, text, text-short
}:
mkDerivation {
pname = "pipes";
version = "4.3.16";
sha256 = "f4e16ecf010fd681a56e6216ab1bd429f3c9bc962ec032e32cfd23e374e97498";
revision = "6";
editedCabalFile = "16s8a1ijakhsk73ny2vrw6a8r2dszgncd0wk735ii6csg3l2c9pm";
pname = "base32";
version = "0.4";
sha256 = "9ae7861d509528d3e8f4ecd946051b05f7141e907216e672d18e26d242a908d4";
revision = "1";
editedCabalFile = "080i61y2mzahrkvj27llybgc4g0kwf53j552y8g5pcpl45dshgvh";
isLibrary = true;
isExecutable = false;
enableSeparateDataOutput = false;
libraryHaskellDepends = [
base
exceptions
mmorph
mtl
transformers
void
base bytestring deepseq text text-short
];
testHaskellDepends = [
base
mtl
QuickCheck
test-framework
test-framework-quickcheck2
transformers
base bytestring memory QuickCheck random-bytestring tasty
tasty-hunit tasty-quickcheck text text-short
];
benchmarkHaskellDepends = [
base
criterion
mtl
optparse-applicative
transformers
base bytestring criterion deepseq memory random-bytestring text
];
enableLibraryProfiling = true;
enableExecutableProfiling = true;
doHaddock = false;
doHaddock = true;
jailbreak = true;
doCheck = false;
doBenchmark = false;
hyperlinkSource = false;
description = "Compositional pipelines";
homepage = "https://github.com/emilypi/base32";
description = "Fast RFC 4648-compliant Base32 encoding";
license = lib.licenses.bsd3;
broken = false;
}
}
\ No newline at end of file
{ mkDerivation
, base
, bytestring
, criterion
, lib
, quickcheck-assertions
, quickcheck-instances
, tasty
{ mkDerivation, base, bytestring, criterion, lib
, quickcheck-assertions, quickcheck-instances, tasty
, tasty-quickcheck
}:
mkDerivation {
......@@ -17,17 +11,13 @@ mkDerivation {
enableSeparateDataOutput = false;
libraryHaskellDepends = [ base bytestring ];
testHaskellDepends = [
base
bytestring
quickcheck-assertions
quickcheck-instances
tasty
base bytestring quickcheck-assertions quickcheck-instances tasty
tasty-quickcheck
];
benchmarkHaskellDepends = [ base bytestring criterion ];
enableLibraryProfiling = true;
enableExecutableProfiling = true;
doHaddock = false;
doHaddock = true;
jailbreak = true;
doCheck = false;
doBenchmark = false;
......@@ -36,4 +26,4 @@ mkDerivation {
description = "Implementation of BASE58 transcoding for ByteStrings";
license = lib.licenses.publicDomain;
broken = false;
}
}
\ No newline at end of file
{ mkDerivation
, QuickCheck
, aeson
, base
, base-compat
, base64-bytestring
, binary
, bytestring
, cereal
, deepseq
, hashable
, http-api-data
, lib
, serialise
, tasty
, tasty-quickcheck
, text
{ mkDerivation, QuickCheck, aeson, base, base-compat
, base64-bytestring, binary, bytestring, cereal, deepseq, hashable
, http-api-data, lib, serialise, tasty, tasty-quickcheck, text
}:
mkDerivation {
pname = "base64-bytestring-type";
version = "1.0.1";
sha256 = "f607d07c4aab227b4536c495fa7c07b35ddc9c2c013d385c16c02f236526780e";
revision = "15";
editedCabalFile = "0yka3aazfd5jj0dqh89cpjc8sgx3yhiiqfhrpb9z5p4zvbyvym6g";
revision = "19";
editedCabalFile = "001hlnsldkiw1lr188n13j41fzfl157ba0y4qdcnzygnj5wa66ac";
isLibrary = true;
isExecutable = false;
enableSeparateDataOutput = false;
libraryHaskellDepends = [
aeson
base
base-compat
base64-bytestring
binary
bytestring
cereal
deepseq
hashable
http-api-data
QuickCheck
serialise
text
aeson base base-compat base64-bytestring binary bytestring cereal
deepseq hashable http-api-data QuickCheck serialise text
];
testHaskellDepends = [
aeson
base
binary
bytestring
cereal
http-api-data
serialise
tasty
aeson base binary bytestring cereal http-api-data serialise tasty
tasty-quickcheck
];
enableLibraryProfiling = true;
enableExecutableProfiling = true;
doHaddock = false;
doHaddock = true;
jailbreak = true;
doCheck = false;
doBenchmark = false;
......@@ -62,4 +30,4 @@ mkDerivation {
description = "A newtype around ByteString, for base64 encoding";
license = lib.licenses.bsd3;
broken = false;
}
}
\ No newline at end of file
{ mkDerivation
, HUnit
, QuickCheck
, base
, bytestring
, criterion
, deepseq
, lib
, test-framework
, test-framework-hunit
, test-framework-quickcheck2
}:
mkDerivation {
pname = "base64-bytestring";
version = "1.2.1.0";
sha256 = "fbf8ed30edde271eb605352021431d8f1b055f95a56af31fe2eacf6bdfdc49c9";
isLibrary = true;
isExecutable = false;
enableSeparateDataOutput = false;
libraryHaskellDepends = [ base bytestring ];
testHaskellDepends = [
base
bytestring
HUnit
QuickCheck
test-framework
test-framework-hunit
test-framework-quickcheck2
];
benchmarkHaskellDepends = [ base bytestring criterion deepseq ];
enableLibraryProfiling = true;
enableExecutableProfiling = true;
doHaddock = false;
jailbreak = true;
doCheck = false;
doBenchmark = false;
hyperlinkSource = false;
homepage = "https://github.com/haskell/base64-bytestring";
description = "Fast base64 encoding and decoding for ByteStrings";
license = lib.licenses.bsd3;
broken = false;
}
{ mkDerivation
, aeson
, base
, bytestring
, containers
, dlist
, fetchgit
, free
, ghc-prim
, hashable
, lib
, microlens
, mtl
, network-uri
, scientific
, tagged
, tasty
, tasty-hunit
, text
, time
, vector
, vector-sized
{ mkDerivation, aeson, base, bytestring, containers, dlist, free
, ghc-prim, hashable, lib, microlens, mtl, network-uri, scientific
, tagged, tasty, tasty-hunit, text, time, vector, vector-sized
}:
mkDerivation {
pname = "beam-core";
version = "0.10.0.0";
src = fetchgit {
url = "https://github.com/haskell-beam/beam";
sha256 = "05yvc8hw0b2f8dg8lz8w1a2y90pwi10iwqa0b2xjhrlacwi0fci9";
rev = "94461937c5ca8b89f1ff1a60bde5bffe207315b4";
fetchSubmodules = true;
};
postUnpack = "sourceRoot+=/beam-core/; echo source root reset to $sourceRoot";
version = "0.10.1.0";
sha256 = "303477810d9fa366610a1063fc3316d5441b1a5291c8eb6fa900343e8ac93340";
isLibrary = true;
isExecutable = false;
enableSeparateDataOutput = false;
libraryHaskellDepends = [
aeson
base
bytestring
containers
dlist
free
ghc-prim
hashable
microlens
mtl
network-uri
scientific
tagged
text
time
vector
aeson base bytestring containers dlist free ghc-prim hashable
microlens mtl network-uri scientific tagged text time vector
vector-sized
];
testHaskellDepends = [
base
bytestring
tasty
tasty-hunit
text
time
base bytestring microlens tasty tasty-hunit text time
];
enableLibraryProfiling = true;
enableExecutableProfiling = true;
doHaddock = false;
doHaddock = true;
jailbreak = true;
doCheck = false;
doBenchmark = false;
......@@ -72,4 +28,4 @@ mkDerivation {
description = "Type-safe, feature-complete SQL query and manipulation interface for Haskell";
license = lib.licenses.mit;
broken = false;
}
}
\ No newline at end of file
{ mkDerivation
, aeson
, base
, beam-core
, bytestring
, containers
, deepseq
, dependent-map
, dependent-sum
, fetchgit
, free
, ghc-prim
, hashable
, haskell-src-exts
, lib
, microlens
, mtl
, parallel
, pqueue
, pretty
, scientific
, text
, time
, unordered-containers
, uuid-types
, vector
{ mkDerivation, aeson, base, beam-core, bytestring, containers
, deepseq, dependent-map, dependent-sum, free, ghc-prim, hashable
, haskell-src-exts, lib, microlens, mtl, parallel, pqueue, pretty
, scientific, text, time, unordered-containers, uuid-types, vector
}:
mkDerivation {
pname = "beam-migrate";
version = "0.5.2.0";
src = fetchgit {
url = "https://github.com/haskell-beam/beam";
sha256 = "05yvc8hw0b2f8dg8lz8w1a2y90pwi10iwqa0b2xjhrlacwi0fci9";
rev = "94461937c5ca8b89f1ff1a60bde5bffe207315b4";
fetchSubmodules = true;
};
postUnpack = "sourceRoot+=/beam-migrate/; echo source root reset to $sourceRoot";
version = "0.5.2.1";
sha256 = "ccbb4685eee3e0067ae0de3b8a2204641a6b8041010612055afb1d79591af499";
isLibrary = true;
isExecutable = false;
enableSeparateDataOutput = false;
libraryHaskellDepends = [
aeson
base
beam-core
bytestring
containers
deepseq
dependent-map
dependent-sum
free
ghc-prim
hashable
haskell-src-exts
microlens
mtl
parallel
pqueue
pretty
scientific
text
time
unordered-containers
uuid-types
vector
aeson base beam-core bytestring containers deepseq dependent-map
dependent-sum free ghc-prim hashable haskell-src-exts microlens mtl
parallel pqueue pretty scientific text time unordered-containers
uuid-types vector
];
enableLibraryProfiling = true;
enableExecutableProfiling = true;
doHaddock = false;
doHaddock = true;
jailbreak = true;
doCheck = false;
doBenchmark = false;
......@@ -74,4 +27,4 @@ mkDerivation {
description = "SQL DDL support and migrations support library for Beam";
license = lib.licenses.mit;
broken = false;
}
}
\ No newline at end of file
{ mkDerivation
, aeson
, attoparsec
, base
, beam-core
, beam-migrate
, bytestring
, case-insensitive
, conduit
, fetchgit
, free
, hashable
, haskell-src-exts
, hedgehog
, lib
, lifted-base
, monad-control
, mtl
, network-uri
, postgresql-libpq
, postgresql-simple
, scientific
, tagged
, tasty
, tasty-hunit
, text
, time
, tmp-postgres
, transformers-base
, unordered-containers
, uuid
, uuid-types
, vector
{ mkDerivation, aeson, attoparsec, base, beam-core, beam-migrate
, bytestring, case-insensitive, conduit, free, hashable
, haskell-src-exts, hedgehog, lib, lifted-base, monad-control, mtl
, network-uri, postgresql-libpq, postgresql-simple, scientific
, tagged, tasty, tasty-hunit, text, time, tmp-postgres
, transformers-base, unordered-containers, uuid, uuid-types, vector
}:
mkDerivation {
pname = "beam-postgres";
version = "0.5.3.0";
src = fetchgit {
url = "https://github.com/haskell-beam/beam";
sha256 = "05yvc8hw0b2f8dg8lz8w1a2y90pwi10iwqa0b2xjhrlacwi0fci9";
rev = "94461937c5ca8b89f1ff1a60bde5bffe207315b4";
fetchSubmodules = true;
};
postUnpack = "sourceRoot+=/beam-postgres/; echo source root reset to $sourceRoot";
version = "0.5.3.1";
sha256 = "36905a02af208dc7755b496ee4afd409d1a769b46c52c5501ade7191137feaa5";
isLibrary = true;
isExecutable = false;
enableSeparateDataOutput = false;
libraryHaskellDepends = [
aeson
attoparsec
base
beam-core
beam-migrate
bytestring
case-insensitive
conduit
free
hashable
haskell-src-exts
lifted-base
monad-control
mtl
network-uri
postgresql-libpq
postgresql-simple
scientific
tagged
text
time
transformers-base
unordered-containers
uuid-types
vector
aeson attoparsec base beam-core beam-migrate bytestring
case-insensitive conduit free hashable haskell-src-exts lifted-base
monad-control mtl network-uri postgresql-libpq postgresql-simple
scientific tagged text time transformers-base unordered-containers
uuid-types vector
];
testHaskellDepends = [
aeson
base
beam-core
beam-migrate
bytestring
hedgehog
postgresql-simple
tasty
tasty-hunit
text
tmp-postgres
uuid
vector
aeson base beam-core beam-migrate bytestring hedgehog
postgresql-simple tasty tasty-hunit text tmp-postgres uuid vector
];
enableLibraryProfiling = true;
enableExecutableProfiling = true;
doHaddock = false;
doHaddock = true;
jailbreak = true;
doCheck = false;
doBenchmark = false;
......@@ -98,4 +34,4 @@ mkDerivation {
description = "Connection layer between beam and postgres";
license = lib.licenses.mit;
broken = false;
}
}
\ No newline at end of file
{ mkDerivation
, aeson
, attoparsec
, base
, beam-core
, beam-migrate
, bytestring
, dlist
, fetchgit
, free
, hashable
, lib
, monad-control
, mtl
, network-uri
, scientific
, sqlite-simple
, tasty
, tasty-expected-failure
, tasty-hunit
, text
, time
, transformers-base
, unix
{ mkDerivation, aeson, attoparsec, base, beam-core, beam-migrate
, bytestring, dlist, free, hashable, lib, monad-control, mtl
, network-uri, scientific, sqlite-simple, tasty
, tasty-expected-failure, tasty-hunit, text, time
, transformers-base, unix
}:
mkDerivation {
pname = "beam-sqlite";
version = "0.5.2.0";
src = fetchgit {
url = "https://github.com/haskell-beam/beam";
sha256 = "05yvc8hw0b2f8dg8lz8w1a2y90pwi10iwqa0b2xjhrlacwi0fci9";
rev = "94461937c5ca8b89f1ff1a60bde5bffe207315b4";
fetchSubmodules = true;
};
postUnpack = "sourceRoot+=/beam-sqlite/; echo source root reset to $sourceRoot";
version = "0.5.3.0";
sha256 = "a49a443524b202576da6a81297e05ae3dd69d5d4bfc494084bd28464bac41614";
isLibrary = true;
isExecutable = false;
enableSeparateDataOutput = false;
libraryHaskellDepends = [
aeson
attoparsec
base
beam-core
beam-migrate
bytestring
dlist
free
hashable
monad-control
mtl
network-uri
scientific
sqlite-simple
text
time
transformers-base
unix
aeson attoparsec base beam-core beam-migrate bytestring dlist free
hashable monad-control mtl network-uri scientific sqlite-simple
text time transformers-base unix
];
testHaskellDepends = [
base
beam-core
beam-migrate
sqlite-simple
tasty
tasty-expected-failure
tasty-hunit
text
time
base beam-core beam-migrate sqlite-simple tasty
tasty-expected-failure tasty-hunit text time
];
enableLibraryProfiling = true;
enableExecutableProfiling = true;
doHaddock = false;
doHaddock = true;
jailbreak = true;
doCheck = false;
doBenchmark = false;
......@@ -78,4 +31,4 @@ mkDerivation {
description = "Beam driver for SQLite";
license = lib.licenses.mit;
broken = false;
}
}
\ No newline at end of file
{ mkDerivation
, base
, bech32
, hspec
, hspec-discover
, lib
, template-haskell
, text
{ mkDerivation, base, bech32, hspec, hspec-discover, lib
, template-haskell, text
}:
mkDerivation {
pname = "bech32-th";
version = "1.1.1";
sha256 = "3346a2539bfafd2e4cb8ca775a0c4aeb5636f52af4a9b0a8c22478b393558814";
version = "1.1.7";
sha256 = "36447a7184fa9032bafa4fe782b2b6ac2c4f7abef1de251a11563bfb3693e128";
isLibrary = true;
isExecutable = false;
enableSeparateDataOutput = false;
......@@ -19,7 +13,7 @@ mkDerivation {
testToolDepends = [ hspec-discover ];
enableLibraryProfiling = true;
enableExecutableProfiling = true;
doHaddock = false;
doHaddock = true;
jailbreak = true;
doCheck = false;
doBenchmark = false;
......@@ -28,4 +22,4 @@ mkDerivation {
description = "Template Haskell extensions to the Bech32 library";
license = lib.licenses.asl20;
broken = false;
}
}
\ No newline at end of file
{ mkDerivation
, QuickCheck
, array
, base
, base58-bytestring
, bytestring
, containers
, deepseq
, extra
, hspec
, hspec-discover
, lib
, memory
, optparse-applicative
, process
, text
, vector
{ mkDerivation, QuickCheck, array, base, base58-bytestring
, bytestring, containers, deepseq, extra, hspec, hspec-discover
, lib, memory, optparse-applicative, prettyprinter
, prettyprinter-ansi-terminal, process, text, vector
}:
mkDerivation {
pname = "bech32";
version = "1.1.2";
sha256 = "489e1922dce97ce59f72d87b17480eb0087b6661d4bcb7be124e027abcb7d2c7";
version = "1.1.7";
sha256 = "ef6e4885319ccff679282820b9312da6f415b46f1f72ff23a53577b9984e87e2";
isLibrary = true;
isExecutable = true;
enableSeparateDataOutput = false;
libraryHaskellDepends = [
array
base
bytestring
containers
extra
text
array base bytestring containers extra text
];
executableHaskellDepends = [
base
base58-bytestring
bytestring
extra
memory
optparse-applicative
text
base base58-bytestring bytestring extra memory optparse-applicative
prettyprinter prettyprinter-ansi-terminal text
];
testHaskellDepends = [
base
base58-bytestring
bytestring
containers
deepseq
extra
hspec
memory
process
QuickCheck
text
vector
base base58-bytestring bytestring containers deepseq extra hspec
memory process QuickCheck text vector
];
testToolDepends = [ hspec-discover ];
enableLibraryProfiling = true;
enableExecutableProfiling = true;
doHaddock = false;
doHaddock = true;
jailbreak = true;
doCheck = false;
doBenchmark = false;
......@@ -66,4 +33,4 @@ mkDerivation {
description = "Implementation of the Bech32 cryptocurrency address format (BIP 0173)";
license = lib.licenses.asl20;
broken = false;
}
}
\ No newline at end of file