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 313 additions and 348 deletions
{ mkDerivation, base, ghc-prim, lib, primitive }:
mkDerivation {
pname = "atomic-primops";
version = "0.8.4";
sha256 = "22a8617eb9e221b5daee1ae26ccce279ce3d7a53d76e82c767708f90a6c72d3e";
isLibrary = true;
isExecutable = false;
enableSeparateDataOutput = false;
libraryHaskellDepends = [ base ghc-prim primitive ];
enableLibraryProfiling = true;
enableExecutableProfiling = true;
doHaddock = false;
jailbreak = true;
doCheck = false;
doBenchmark = false;
hyperlinkSource = false;
homepage = "https://github.com/rrnewton/haskell-lockfree/wiki";
description = "A safe approach to CAS and other atomic ops in Haskell";
license = lib.licenses.bsd3;
broken = false;
}
...@@ -9,7 +9,7 @@ mkDerivation { ...@@ -9,7 +9,7 @@ mkDerivation {
libraryHaskellDepends = [ attoparsec base bytestring ]; libraryHaskellDepends = [ attoparsec base bytestring ];
enableLibraryProfiling = true; enableLibraryProfiling = true;
enableExecutableProfiling = true; enableExecutableProfiling = true;
doHaddock = false; doHaddock = true;
jailbreak = true; jailbreak = true;
doCheck = false; doCheck = false;
doBenchmark = false; doBenchmark = false;
...@@ -17,4 +17,4 @@ mkDerivation { ...@@ -17,4 +17,4 @@ mkDerivation {
description = "Binary processing extensions to Attoparsec"; description = "Binary processing extensions to Attoparsec";
license = lib.licenses.bsd3; license = lib.licenses.bsd3;
broken = false; broken = false;
} }
\ No newline at end of file
{ mkDerivation
, attoparsec
, base
, base-compat-batteries
, lib
, text
, time
, time-compat
}:
mkDerivation {
pname = "attoparsec-iso8601";
version = "1.1.0.0";
sha256 = "1109a817c448a154ec58047a8f01282530cb40d20fbd5690bc58b1443ecb264a";
isLibrary = true;
isExecutable = false;
enableSeparateDataOutput = false;
libraryHaskellDepends = [
attoparsec
base
base-compat-batteries
text
time
time-compat
];
enableLibraryProfiling = true;
enableExecutableProfiling = true;
doHaddock = false;
jailbreak = true;
doCheck = false;
doBenchmark = false;
hyperlinkSource = false;
homepage = "https://github.com/haskell/aeson";
description = "Parsing of ISO 8601 dates, originally from aeson";
license = lib.licenses.bsd3;
broken = false;
}
{ mkDerivation
, QuickCheck
, array
, base
, bytestring
, case-insensitive
, containers
, deepseq
, directory
, filepath
, ghc-prim
, http-types
, lib
, parsec
, quickcheck-unicode
, scientific
, tasty
, tasty-bench
, tasty-quickcheck
, text
, transformers
, unordered-containers
, vector
}:
mkDerivation {
pname = "attoparsec";
version = "0.14.4";
sha256 = "3f337fe58624565de12426f607c23e60c7b09c86b4e3adfc827ca188c9979e6c";
revision = "2";
editedCabalFile = "00jyrn2asz1kp698l3fyh19xxxz4npf1993y041x9b9cq239smn0";
isLibrary = true;
isExecutable = false;
enableSeparateDataOutput = false;
libraryHaskellDepends = [
array
base
bytestring
containers
deepseq
ghc-prim
scientific
text
transformers
];
testHaskellDepends = [
array
base
bytestring
deepseq
QuickCheck
quickcheck-unicode
scientific
tasty
tasty-quickcheck
text
transformers
vector
];
benchmarkHaskellDepends = [
array
base
bytestring
case-insensitive
containers
deepseq
directory
filepath
ghc-prim
http-types
parsec
scientific
tasty-bench
text
transformers
unordered-containers
vector
];
enableLibraryProfiling = true;
enableExecutableProfiling = true;
doHaddock = false;
jailbreak = true;
doCheck = false;
doBenchmark = false;
hyperlinkSource = false;
homepage = "https://github.com/bgamari/attoparsec";
description = "Fast combinator parsing for bytestrings and text";
license = lib.licenses.bsd3;
broken = false;
}
{ mkDerivation { mkDerivation, aeson, autodocodec, base, bytestring, lib
, aeson , servant-multipart, servant-multipart-api, text
, autodocodec , unordered-containers, vector
, base
, bytestring
, lib
, servant-multipart
, servant-multipart-api
, text
, unordered-containers
, vector
}: }:
mkDerivation { mkDerivation {
pname = "autodocodec-servant-multipart"; pname = "autodocodec-servant-multipart";
...@@ -18,19 +10,12 @@ mkDerivation { ...@@ -18,19 +10,12 @@ mkDerivation {
isExecutable = false; isExecutable = false;
enableSeparateDataOutput = false; enableSeparateDataOutput = false;
libraryHaskellDepends = [ libraryHaskellDepends = [
aeson aeson autodocodec base bytestring servant-multipart
autodocodec servant-multipart-api text unordered-containers vector
base
bytestring
servant-multipart
servant-multipart-api
text
unordered-containers
vector
]; ];
enableLibraryProfiling = true; enableLibraryProfiling = true;
enableExecutableProfiling = true; enableExecutableProfiling = true;
doHaddock = false; doHaddock = true;
jailbreak = true; jailbreak = true;
doCheck = false; doCheck = false;
doBenchmark = false; doBenchmark = false;
...@@ -39,4 +24,4 @@ mkDerivation { ...@@ -39,4 +24,4 @@ mkDerivation {
description = "Autodocodec interpreters for Servant Multipart"; description = "Autodocodec interpreters for Servant Multipart";
license = lib.licenses.mit; license = lib.licenses.mit;
broken = false; broken = false;
} }
\ No newline at end of file
{ 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 { mkDerivation {
pname = "autoexporter"; pname = "autoexporter";
version = "2.0.0.2"; version = "2.0.0.12";
sha256 = "f1de55da144f0bfaf1e1d9194684d61cd0a7ff825b3a7aae687631daa5a3a880"; sha256 = "ca82f0b40899fcee465aa053b5b36da0cffcaa2103fecfc4c385aff6e6dd96c6";
isLibrary = true; isLibrary = true;
isExecutable = true; isExecutable = true;
enableSeparateDataOutput = false; enableSeparateDataOutput = false;
libraryHaskellDepends = [ base Cabal directory filepath ]; libraryHaskellDepends = [ base Cabal-syntax directory filepath ];
executableHaskellDepends = [ base Cabal directory filepath ]; executableHaskellDepends = [ base ];
enableLibraryProfiling = true; enableLibraryProfiling = true;
enableExecutableProfiling = true; enableExecutableProfiling = true;
doHaddock = false; doHaddock = true;
jailbreak = true; jailbreak = true;
doCheck = false; doCheck = false;
doBenchmark = false; doBenchmark = false;
...@@ -18,4 +18,4 @@ mkDerivation { ...@@ -18,4 +18,4 @@ mkDerivation {
description = "Automatically re-export modules"; description = "Automatically re-export modules";
license = lib.licenses.mit; license = lib.licenses.mit;
broken = false; broken = false;
} }
\ No newline at end of file
{ 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, base, lib }:
mkDerivation { mkDerivation {
pname = "persistent-template"; pname = "base-prelude";
version = "2.12.0.0"; version = "1.6.1.1";
sha256 = "dc488b567d373ebfbf5f3df8bba240e6203d1b13556872648d5f0d228fd02c31"; sha256 = "8108af03f2c9d6dc4fe9e7033afc53f0472d1e520261cef0ec3e420b29521dd3";
isLibrary = true; isLibrary = true;
isExecutable = false; isExecutable = false;
enableSeparateDataOutput = false; enableSeparateDataOutput = false;
libraryHaskellDepends = [ base ]; libraryHaskellDepends = [ base ];
enableLibraryProfiling = true; enableLibraryProfiling = true;
enableExecutableProfiling = true; enableExecutableProfiling = true;
doHaddock = false; doHaddock = true;
jailbreak = true; jailbreak = true;
doCheck = false; doCheck = false;
doBenchmark = false; doBenchmark = false;
hyperlinkSource = false; hyperlinkSource = false;
homepage = "http://www.yesodweb.com/book/persistent"; homepage = "https://github.com/nikita-volkov/base-prelude";
description = "Type-safe, non-relational, multi-backend persistence"; description = "Featureful preludes formed solely from the \"base\" package";
license = lib.licenses.mit; license = lib.licenses.mit;
broken = false; 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 { mkDerivation, QuickCheck, base, bytestring, criterion, deepseq
, base , lib, memory, random-bytestring, tasty, tasty-hunit
, basement , tasty-quickcheck, text, text-short
, bytestring
, deepseq
, gauge
, ghc-prim
, integer-gmp
, lib
, memory
, random
, tasty
, tasty-hunit
, tasty-kat
, tasty-quickcheck
}: }:
mkDerivation { mkDerivation {
pname = "cryptonite"; pname = "base32";
version = "0.30"; version = "0.4";
sha256 = "56099c8a8aa01d2ee914b670c97c1f818186dbb886e2025b73d9c2afe3496b1d"; sha256 = "9ae7861d509528d3e8f4ecd946051b05f7141e907216e672d18e26d242a908d4";
revision = "1";
editedCabalFile = "080i61y2mzahrkvj27llybgc4g0kwf53j552y8g5pcpl45dshgvh";
isLibrary = true; isLibrary = true;
isExecutable = false; isExecutable = false;
enableSeparateDataOutput = false; enableSeparateDataOutput = false;
libraryHaskellDepends = [ libraryHaskellDepends = [
base base bytestring deepseq text text-short
basement
bytestring
deepseq
ghc-prim
integer-gmp
memory
]; ];
testHaskellDepends = [ testHaskellDepends = [
base base bytestring memory QuickCheck random-bytestring tasty
bytestring tasty-hunit tasty-quickcheck text text-short
memory
tasty
tasty-hunit
tasty-kat
tasty-quickcheck
]; ];
benchmarkHaskellDepends = [ benchmarkHaskellDepends = [
base base bytestring criterion deepseq memory random-bytestring text
bytestring
deepseq
gauge
memory
random
]; ];
enableLibraryProfiling = true; enableLibraryProfiling = true;
enableExecutableProfiling = true; enableExecutableProfiling = true;
doHaddock = false; doHaddock = true;
jailbreak = true; jailbreak = true;
doCheck = false; doCheck = false;
doBenchmark = false; doBenchmark = false;
hyperlinkSource = false; hyperlinkSource = false;
homepage = "https://github.com/haskell-crypto/cryptonite"; homepage = "https://github.com/emilypi/base32";
description = "Cryptography Primitives sink"; description = "Fast RFC 4648-compliant Base32 encoding";
license = lib.licenses.bsd3; license = lib.licenses.bsd3;
broken = false; broken = false;
} }
\ No newline at end of file
{ mkDerivation { mkDerivation, base, bytestring, criterion, lib
, SHA , quickcheck-assertions, quickcheck-instances, tasty
, base
, base16-bytestring
, bytestring
, criterion
, lib
, tasty
, tasty-hunit
, tasty-quickcheck , tasty-quickcheck
}: }:
mkDerivation { mkDerivation {
pname = "cryptohash-sha1"; pname = "base58-bytestring";
version = "0.11.101.0"; version = "0.1.0";
sha256 = "a4042c97ad02eb68e766577ca35c01970c33e96cfd74ccb4dd403e3476a23241"; sha256 = "c2dbf598f3415053e12cca84b90fa7c0c1b02f3b784cce0157264baebf2d40d3";
revision = "1";
editedCabalFile = "0bz9rfl7b2iwn45m0lxcmsyi5rrv3xdgzx2lzr79bds91dw6i25b";
isLibrary = true; isLibrary = true;
isExecutable = false; isExecutable = false;
enableSeparateDataOutput = false; enableSeparateDataOutput = false;
libraryHaskellDepends = [ base bytestring ]; libraryHaskellDepends = [ base bytestring ];
testHaskellDepends = [ testHaskellDepends = [
base base bytestring quickcheck-assertions quickcheck-instances tasty
base16-bytestring
bytestring
SHA
tasty
tasty-hunit
tasty-quickcheck tasty-quickcheck
]; ];
benchmarkHaskellDepends = [ base bytestring criterion ]; benchmarkHaskellDepends = [ base bytestring criterion ];
enableLibraryProfiling = true; enableLibraryProfiling = true;
enableExecutableProfiling = true; enableExecutableProfiling = true;
doHaddock = false; doHaddock = true;
jailbreak = true; jailbreak = true;
doCheck = false; doCheck = false;
doBenchmark = false; doBenchmark = false;
hyperlinkSource = false; hyperlinkSource = false;
homepage = "https://github.com/hvr/cryptohash-sha1"; homepage = "https://bitbucket.org/s9gf4ult/base58-bytestring";
description = "Fast, pure and practical SHA-1 implementation"; description = "Implementation of BASE58 transcoding for ByteStrings";
license = lib.licenses.bsd3; license = lib.licenses.publicDomain;
broken = false; broken = false;
} }
\ No newline at end of file
{ mkDerivation { mkDerivation, QuickCheck, aeson, base, base-compat
, Cabal , base64-bytestring, binary, bytestring, cereal, deepseq, hashable
, Cabal-syntax , http-api-data, lib, serialise, tasty, tasty-quickcheck, text
, array
, base
, bytestring
, containers
, edit-distance
, filepath
, lib
, mtl
, pretty
, tasty
, tasty-hunit
, tasty-quickcheck
, transformers
}: }:
mkDerivation { mkDerivation {
pname = "cabal-install-solver"; pname = "base64-bytestring-type";
version = "3.8.1.0"; version = "1.0.1";
sha256 = "df2369f6c37517a3b2625bc19057d9e206bbb40386bcb607f17dc7d2e588ffe7"; sha256 = "f607d07c4aab227b4536c495fa7c07b35ddc9c2c013d385c16c02f236526780e";
revision = "1"; revision = "19";
editedCabalFile = "1g487j20pj03pc10yaha18v73wh3ackxjgfpfqaj7xznqcbm5xwm"; editedCabalFile = "001hlnsldkiw1lr188n13j41fzfl157ba0y4qdcnzygnj5wa66ac";
isLibrary = true; isLibrary = true;
isExecutable = false; isExecutable = false;
enableSeparateDataOutput = false; enableSeparateDataOutput = false;
libraryHaskellDepends = [ libraryHaskellDepends = [
array aeson base base-compat base64-bytestring binary bytestring cereal
base deepseq hashable http-api-data QuickCheck serialise text
bytestring
Cabal
Cabal-syntax
containers
edit-distance
filepath
mtl
pretty
transformers
]; ];
testHaskellDepends = [ testHaskellDepends = [
base aeson base binary bytestring cereal http-api-data serialise tasty
Cabal
Cabal-syntax
tasty
tasty-hunit
tasty-quickcheck tasty-quickcheck
]; ];
enableLibraryProfiling = true; enableLibraryProfiling = true;
enableExecutableProfiling = true; enableExecutableProfiling = true;
doHaddock = false; doHaddock = true;
jailbreak = true; jailbreak = true;
doCheck = false; doCheck = false;
doBenchmark = false; doBenchmark = false;
hyperlinkSource = false; hyperlinkSource = false;
homepage = "http://www.haskell.org/cabal/"; homepage = "https://github.com/phadej/base64-bytestring-type#readme";
description = "The command-line interface for Cabal and Hackage"; description = "A newtype around ByteString, for base64 encoding";
license = lib.licenses.bsd3; license = lib.licenses.bsd3;
broken = false; 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, 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.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
vector-sized
];
testHaskellDepends = [
base bytestring microlens tasty tasty-hunit text time
];
enableLibraryProfiling = true;
enableExecutableProfiling = true;
doHaddock = true;
jailbreak = true;
doCheck = false;
doBenchmark = false;
hyperlinkSource = false;
homepage = "http://travis.athougies.net/projects/beam.html";
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, 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.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
];
enableLibraryProfiling = true;
enableExecutableProfiling = true;
doHaddock = true;
jailbreak = true;
doCheck = false;
doBenchmark = false;
hyperlinkSource = false;
homepage = "https://travis.athougies.net/projects/beam.html";
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, 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.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
];
testHaskellDepends = [
aeson base beam-core beam-migrate bytestring hedgehog
postgresql-simple tasty tasty-hunit text tmp-postgres uuid vector
];
enableLibraryProfiling = true;
enableExecutableProfiling = true;
doHaddock = true;
jailbreak = true;
doCheck = false;
doBenchmark = false;
hyperlinkSource = false;
homepage = "https://haskell-beam.github.io/beam/user-guide/backends/beam-postgres";
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, 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.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
];
testHaskellDepends = [
base beam-core beam-migrate sqlite-simple tasty
tasty-expected-failure tasty-hunit text time
];
enableLibraryProfiling = true;
enableExecutableProfiling = true;
doHaddock = true;
jailbreak = true;
doCheck = false;
doBenchmark = false;
hyperlinkSource = false;
homepage = "https://haskell-beam.github.io/beam/user-guide/backends/beam-sqlite/";
description = "Beam driver for SQLite";
license = lib.licenses.mit;
broken = false;
}
\ No newline at end of file
{ mkDerivation { mkDerivation, base, bech32, hspec, hspec-discover, lib
, QuickCheck , template-haskell, text
, base
, base-compat
, ghc-prim
, hspec
, hspec-discover
, lib
}: }:
mkDerivation { mkDerivation {
pname = "base-compat-batteries"; pname = "bech32-th";
version = "0.12.2"; version = "1.1.7";
sha256 = "ede9092e07f904e0759160bf1ecd3fb7eb043bae6dc89a37c3dc94829ec5eb99"; sha256 = "36447a7184fa9032bafa4fe782b2b6ac2c4f7abef1de251a11563bfb3693e128";
isLibrary = true; isLibrary = true;
isExecutable = false; isExecutable = false;
enableSeparateDataOutput = false; enableSeparateDataOutput = false;
libraryHaskellDepends = [ base base-compat ghc-prim ]; libraryHaskellDepends = [ base bech32 template-haskell text ];
testHaskellDepends = [ base hspec QuickCheck ]; testHaskellDepends = [ base bech32 hspec template-haskell ];
testToolDepends = [ hspec-discover ]; testToolDepends = [ hspec-discover ];
enableLibraryProfiling = true; enableLibraryProfiling = true;
enableExecutableProfiling = true; enableExecutableProfiling = true;
doHaddock = false; doHaddock = true;
jailbreak = true; jailbreak = true;
doCheck = false; doCheck = false;
doBenchmark = false; doBenchmark = false;
hyperlinkSource = false; hyperlinkSource = false;
description = "base-compat with extra batteries"; homepage = "https://github.com/input-output-hk/bech32";
license = lib.licenses.mit; description = "Template Haskell extensions to the Bech32 library";
license = lib.licenses.asl20;
broken = false; 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, prettyprinter
, prettyprinter-ansi-terminal, process, text, vector
}:
mkDerivation {
pname = "bech32";
version = "1.1.7";
sha256 = "ef6e4885319ccff679282820b9312da6f415b46f1f72ff23a53577b9984e87e2";
isLibrary = true;
isExecutable = true;
enableSeparateDataOutput = false;
libraryHaskellDepends = [
array base bytestring containers extra text
];
executableHaskellDepends = [
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
];
testToolDepends = [ hspec-discover ];
enableLibraryProfiling = true;
enableExecutableProfiling = true;
doHaddock = true;
jailbreak = true;
doCheck = false;
doBenchmark = false;
hyperlinkSource = false;
homepage = "https://github.com/input-output-hk/bech32";
description = "Implementation of the Bech32 cryptocurrency address format (BIP 0173)";
license = lib.licenses.asl20;
broken = false;
}
\ No newline at end of file