hackage-packages.nix: automatic Haskell package set update
This update was generated by hackage2nix v2.12-8-g7b07d27 from Hackage revision
574fb20f4c
.
This commit is contained in:
parent
19f8bedb02
commit
3ab58ceaab
|
@ -1618,26 +1618,27 @@ self: {
|
|||
}) {};
|
||||
|
||||
"BiobaseTypes" = callPackage
|
||||
({ mkDerivation, aeson, base, bimaps, binary, bytestring, cereal
|
||||
, cereal-text, cereal-vector, containers, data-default, deepseq
|
||||
, hashable, intern, lens, mtl, primitive, PrimitiveArray
|
||||
, QuickCheck, string-conversions, tasty, tasty-quickcheck, tasty-th
|
||||
, text, text-binary, utf8-string, vector, vector-binary-instances
|
||||
({ mkDerivation, aeson, attoparsec, base, bimaps, binary
|
||||
, bytestring, cereal, cereal-text, cereal-vector, containers
|
||||
, data-default, deepseq, ForestStructures, hashable, intern, lens
|
||||
, mtl, primitive, PrimitiveArray, QuickCheck, SciBaseTypes
|
||||
, string-conversions, tasty, tasty-quickcheck, tasty-th, text
|
||||
, text-binary, utf8-string, vector, vector-binary-instances
|
||||
, vector-th-unbox
|
||||
}:
|
||||
mkDerivation {
|
||||
pname = "BiobaseTypes";
|
||||
version = "0.1.3.0";
|
||||
sha256 = "15yzg4llvz7pq5f0chfwrkaqspwrqxan4xvczrk4mvwa07z3abbp";
|
||||
version = "0.1.4.0";
|
||||
sha256 = "1ih3l72i9ahgxb261y43gncdrha3jpzkpavvhbsyqv6vi7pgcj4r";
|
||||
libraryHaskellDepends = [
|
||||
aeson base bimaps binary bytestring cereal cereal-text
|
||||
cereal-vector containers data-default deepseq hashable intern lens
|
||||
mtl primitive PrimitiveArray QuickCheck string-conversions text
|
||||
text-binary utf8-string vector vector-binary-instances
|
||||
vector-th-unbox
|
||||
aeson attoparsec base bimaps binary bytestring cereal cereal-text
|
||||
cereal-vector containers data-default deepseq ForestStructures
|
||||
hashable intern lens mtl primitive PrimitiveArray QuickCheck
|
||||
SciBaseTypes string-conversions text text-binary utf8-string vector
|
||||
vector-binary-instances vector-th-unbox
|
||||
];
|
||||
testHaskellDepends = [
|
||||
base QuickCheck tasty tasty-quickcheck tasty-th
|
||||
base bytestring lens QuickCheck tasty tasty-quickcheck tasty-th
|
||||
];
|
||||
description = "Collection of types for bioinformatics";
|
||||
license = stdenv.lib.licenses.bsd3;
|
||||
|
@ -3602,25 +3603,30 @@ self: {
|
|||
}) {};
|
||||
|
||||
"DPutils" = callPackage
|
||||
({ mkDerivation, base, bytestring, containers, criterion
|
||||
, kan-extensions, lens, mtl, parallel, pipes, pipes-bytestring
|
||||
, pipes-parse, QuickCheck, quickcheck-instances, stringsearch
|
||||
, tasty, tasty-quickcheck, tasty-th, transformers, vector
|
||||
({ mkDerivation, attoparsec, base, bytestring, containers
|
||||
, criterion, kan-extensions, lens, mtl, parallel, pipes
|
||||
, pipes-bytestring, pipes-parse, QuickCheck, streaming
|
||||
, streaming-bytestring, stringsearch, tasty, tasty-quickcheck
|
||||
, tasty-th, timeit, transformers, vector
|
||||
}:
|
||||
mkDerivation {
|
||||
pname = "DPutils";
|
||||
version = "0.0.1.0";
|
||||
sha256 = "1a0ivvq16q8k21xjhv1kmm2s73ajc0gmacwdawkk4nr7jklyhh16";
|
||||
version = "0.0.2.0";
|
||||
sha256 = "0axavxxg0n1dsdby8306yrinjhbfrvy5a27kkwiw75xvjprk4w5w";
|
||||
libraryHaskellDepends = [
|
||||
base bytestring containers kan-extensions parallel pipes QuickCheck
|
||||
stringsearch transformers vector
|
||||
attoparsec base bytestring containers kan-extensions parallel pipes
|
||||
QuickCheck streaming streaming-bytestring stringsearch transformers
|
||||
vector
|
||||
];
|
||||
testHaskellDepends = [
|
||||
base bytestring containers kan-extensions lens mtl parallel pipes
|
||||
pipes-bytestring pipes-parse QuickCheck quickcheck-instances tasty
|
||||
base bytestring containers lens mtl pipes pipes-bytestring
|
||||
pipes-parse QuickCheck streaming streaming-bytestring tasty
|
||||
tasty-quickcheck tasty-th vector
|
||||
];
|
||||
benchmarkHaskellDepends = [ base criterion vector ];
|
||||
benchmarkHaskellDepends = [
|
||||
base bytestring criterion streaming streaming-bytestring timeit
|
||||
vector
|
||||
];
|
||||
description = "utilities for DP";
|
||||
license = stdenv.lib.licenses.bsd3;
|
||||
}) {};
|
||||
|
@ -5611,6 +5617,28 @@ self: {
|
|||
license = stdenv.lib.licenses.bsd3;
|
||||
}) {};
|
||||
|
||||
"ForestStructures_0_0_1_0" = callPackage
|
||||
({ mkDerivation, base, bifunctors, containers, criterion, fgl, lens
|
||||
, QuickCheck, tasty, tasty-quickcheck, tasty-th
|
||||
, unordered-containers, vector, vector-th-unbox
|
||||
}:
|
||||
mkDerivation {
|
||||
pname = "ForestStructures";
|
||||
version = "0.0.1.0";
|
||||
sha256 = "1hhmcc0cpjbixqjgl35gv9dpymamdfb4vhhd5hard0qpg1xllnvw";
|
||||
libraryHaskellDepends = [
|
||||
base bifunctors containers fgl lens QuickCheck unordered-containers
|
||||
vector vector-th-unbox
|
||||
];
|
||||
testHaskellDepends = [
|
||||
base containers QuickCheck tasty tasty-quickcheck tasty-th vector
|
||||
];
|
||||
benchmarkHaskellDepends = [ base criterion ];
|
||||
description = "Tree- and forest structures";
|
||||
license = stdenv.lib.licenses.bsd3;
|
||||
hydraPlatforms = stdenv.lib.platforms.none;
|
||||
}) {};
|
||||
|
||||
"Forestry" = callPackage
|
||||
({ mkDerivation, ADPfusion, ADPfusionForest, base, BiobaseNewick
|
||||
, BiobaseTypes, containers, criterion, ForestStructures
|
||||
|
@ -14646,19 +14674,19 @@ self: {
|
|||
|
||||
"PrimitiveArray" = callPackage
|
||||
({ mkDerivation, aeson, base, binary, bits, cereal, cereal-vector
|
||||
, containers, deepseq, DPutils, hashable, log-domain, OrderedBits
|
||||
, primitive, QuickCheck, smallcheck, tasty, tasty-quickcheck
|
||||
, tasty-smallcheck, tasty-th, text, vector, vector-binary-instances
|
||||
, vector-th-unbox
|
||||
, containers, deepseq, DPutils, hashable, lens, log-domain, mtl
|
||||
, OrderedBits, primitive, QuickCheck, smallcheck, tasty
|
||||
, tasty-quickcheck, tasty-smallcheck, tasty-th, text, vector
|
||||
, vector-binary-instances, vector-th-unbox
|
||||
}:
|
||||
mkDerivation {
|
||||
pname = "PrimitiveArray";
|
||||
version = "0.8.0.1";
|
||||
sha256 = "1x9qmm9bq14dv7abxbmbij1mfyj3pmrmn61yy09zs52m247pvrwi";
|
||||
version = "0.9.0.0";
|
||||
sha256 = "0zhv17cjdppli5q66j1yabbgx3ad172w4jj4zhn0va2wsc9fs5vi";
|
||||
libraryHaskellDepends = [
|
||||
aeson base binary bits cereal cereal-vector deepseq DPutils
|
||||
hashable log-domain OrderedBits primitive QuickCheck smallcheck
|
||||
text vector vector-binary-instances vector-th-unbox
|
||||
hashable lens log-domain mtl OrderedBits primitive QuickCheck
|
||||
smallcheck text vector vector-binary-instances vector-th-unbox
|
||||
];
|
||||
testHaskellDepends = [
|
||||
base containers QuickCheck smallcheck tasty tasty-quickcheck
|
||||
|
@ -16357,6 +16385,27 @@ self: {
|
|||
license = stdenv.lib.licenses.bsd3;
|
||||
}) {};
|
||||
|
||||
"SciBaseTypes" = callPackage
|
||||
({ mkDerivation, aeson, base, binary, cereal, deepseq, hashable
|
||||
, lens, log-domain, mtl, QuickCheck, tasty, tasty-quickcheck
|
||||
, tasty-th, vector, vector-th-unbox
|
||||
}:
|
||||
mkDerivation {
|
||||
pname = "SciBaseTypes";
|
||||
version = "0.0.0.1";
|
||||
sha256 = "14xzlyca61jhfak1vjll5k2ac2hq55hfvbmqbpk8ls56amlyal5j";
|
||||
libraryHaskellDepends = [
|
||||
aeson base binary cereal deepseq hashable lens log-domain mtl
|
||||
vector vector-th-unbox
|
||||
];
|
||||
testHaskellDepends = [
|
||||
base QuickCheck tasty tasty-quickcheck tasty-th
|
||||
];
|
||||
benchmarkHaskellDepends = [ base ];
|
||||
description = "Base types and classes for statistics, sciences and humanities";
|
||||
license = stdenv.lib.licenses.bsd3;
|
||||
}) {};
|
||||
|
||||
"SciFlow" = callPackage
|
||||
({ mkDerivation, aeson, base, bytestring, cereal, cereal-text
|
||||
, containers, data-default-class, directory, exceptions
|
||||
|
@ -28065,11 +28114,25 @@ self: {
|
|||
pname = "appar";
|
||||
version = "0.1.5";
|
||||
sha256 = "0qlfwy8nxl1na55p155vq5yn0cqz26mmmh5vs28aqry7kyyxndfi";
|
||||
revision = "1";
|
||||
editedCabalFile = "0adhm7jldcqnikvd8b9wj6p5rnhf4ciwbms0jafwx79w720knj9p";
|
||||
libraryHaskellDepends = [ base bytestring ];
|
||||
description = "A simple applicative parser";
|
||||
license = stdenv.lib.licenses.bsd3;
|
||||
}) {};
|
||||
|
||||
"appar_0_1_7" = callPackage
|
||||
({ mkDerivation, base, bytestring }:
|
||||
mkDerivation {
|
||||
pname = "appar";
|
||||
version = "0.1.7";
|
||||
sha256 = "07zjgx7xpjgkjqvga0wv542cyrjzh1mszlczg82nbmij2cflzppn";
|
||||
libraryHaskellDepends = [ base bytestring ];
|
||||
description = "A simple applicative parser";
|
||||
license = stdenv.lib.licenses.bsd3;
|
||||
hydraPlatforms = stdenv.lib.platforms.none;
|
||||
}) {};
|
||||
|
||||
"appc" = callPackage
|
||||
({ mkDerivation, aeson, base, bytestring, containers, hspec
|
||||
, hspec-smallcheck, optparse-applicative, semver, smallcheck, text
|
||||
|
@ -64819,8 +64882,8 @@ self: {
|
|||
}:
|
||||
mkDerivation {
|
||||
pname = "discord-haskell";
|
||||
version = "0.6.0";
|
||||
sha256 = "1202zfh3lq0ci48ylp637hcih469awz6sfkp14lzq5psybiiynvw";
|
||||
version = "0.7.0";
|
||||
sha256 = "0zq9aaarh34c24ih49ap5bblswpzc1nwcp8rw8bw1j4agp2ndpy0";
|
||||
libraryHaskellDepends = [
|
||||
aeson async base base64-bytestring bytestring containers
|
||||
data-default http-client iso8601-time JuicyPixels MonadRandom req
|
||||
|
@ -69479,8 +69542,8 @@ self: {
|
|||
}:
|
||||
mkDerivation {
|
||||
pname = "eigen";
|
||||
version = "3.3.4.2";
|
||||
sha256 = "0l88bzp6f5bs5lpcav1c0lg2dc59rfdka2d6dx3c6gzbj1jmf5iz";
|
||||
version = "3.3.7.0";
|
||||
sha256 = "0smpfli12kzmgpw92azx9lsb1kiq6zn490yr1fmhv1a3lynm53rs";
|
||||
libraryHaskellDepends = [
|
||||
base binary bytestring constraints ghc-prim primitive transformers
|
||||
vector
|
||||
|
@ -72781,16 +72844,16 @@ self: {
|
|||
"eventsource-api" = callPackage
|
||||
({ mkDerivation, aeson, base, bytestring, containers
|
||||
, enclosed-exceptions, lifted-async, lifted-base, monad-control
|
||||
, monad-loops, mtl, stm, stm-chans, string-conversions, text
|
||||
, transformers-base, unordered-containers, uuid
|
||||
, monad-loops, mtl, stm, stm-chans, streaming, string-conversions
|
||||
, text, transformers-base, unordered-containers, uuid
|
||||
}:
|
||||
mkDerivation {
|
||||
pname = "eventsource-api";
|
||||
version = "1.3.1";
|
||||
sha256 = "0dlrbc3xxijz1hf8w34lvk70ic6gsfb9j5z3ldqdssvv9c8fksy2";
|
||||
version = "1.5.0";
|
||||
sha256 = "0748wrj8amw66cl95cri7g2nw9kwc5h0dsw1419p90xpxgvn4kvr";
|
||||
libraryHaskellDepends = [
|
||||
aeson base bytestring containers enclosed-exceptions lifted-async
|
||||
lifted-base monad-control monad-loops mtl stm stm-chans
|
||||
lifted-base monad-control monad-loops mtl stm stm-chans streaming
|
||||
string-conversions text transformers-base unordered-containers uuid
|
||||
];
|
||||
description = "Provides an eventsourcing high level API";
|
||||
|
@ -72799,20 +72862,23 @@ self: {
|
|||
|
||||
"eventsource-geteventstore-store" = callPackage
|
||||
({ mkDerivation, aeson, base, eventsource-api
|
||||
, eventsource-store-specs, eventstore, mtl, protolude
|
||||
, string-conversions, tasty, tasty-hspec, transformers-base
|
||||
, eventsource-store-specs, eventstore, lifted-async, lifted-base
|
||||
, mtl, protolude, streaming, string-conversions, tasty, tasty-hspec
|
||||
, transformers-base
|
||||
}:
|
||||
mkDerivation {
|
||||
pname = "eventsource-geteventstore-store";
|
||||
version = "1.1.0";
|
||||
sha256 = "00siad63vciymkdql9b3bszb2qfcylb9y32x04ndd19mvpixhdi3";
|
||||
version = "1.2.0";
|
||||
sha256 = "0v0k89xb86h8zxrzzpph0bayy47v3gn56vi3v02cvvnwnif3071l";
|
||||
libraryHaskellDepends = [
|
||||
aeson base eventsource-api eventstore mtl string-conversions
|
||||
aeson base eventsource-api eventsource-store-specs eventstore
|
||||
lifted-async lifted-base mtl streaming string-conversions
|
||||
transformers-base
|
||||
];
|
||||
testHaskellDepends = [
|
||||
base eventsource-api eventsource-store-specs eventstore protolude
|
||||
tasty tasty-hspec
|
||||
aeson base eventsource-api eventsource-store-specs eventstore
|
||||
lifted-async lifted-base mtl protolude streaming string-conversions
|
||||
tasty tasty-hspec transformers-base
|
||||
];
|
||||
description = "GetEventStore store implementation";
|
||||
license = stdenv.lib.licenses.bsd3;
|
||||
|
@ -72820,16 +72886,16 @@ self: {
|
|||
}) {};
|
||||
|
||||
"eventsource-store-specs" = callPackage
|
||||
({ mkDerivation, aeson, async, base, eventsource-api, mtl, tasty
|
||||
, tasty-hspec, text, transformers-base, uuid
|
||||
({ mkDerivation, aeson, async, base, eventsource-api, mtl
|
||||
, streaming, tasty, tasty-hspec, text, transformers-base, uuid
|
||||
}:
|
||||
mkDerivation {
|
||||
pname = "eventsource-store-specs";
|
||||
version = "1.1.1";
|
||||
sha256 = "1pa4s9y9cgvaadzyp186snhvrgp4jw1xgzxy2w58hxfa2mcxqn4i";
|
||||
version = "1.2.0";
|
||||
sha256 = "1fvwwbbn8407rcxl7sww1k944gq95hniq9s9ys3hzr8a9y65598i";
|
||||
libraryHaskellDepends = [
|
||||
aeson async base eventsource-api mtl tasty tasty-hspec text
|
||||
transformers-base uuid
|
||||
aeson async base eventsource-api mtl streaming tasty tasty-hspec
|
||||
text transformers-base uuid
|
||||
];
|
||||
description = "Provides common test specification for Store implementation";
|
||||
license = stdenv.lib.licenses.bsd3;
|
||||
|
@ -72837,19 +72903,20 @@ self: {
|
|||
|
||||
"eventsource-stub-store" = callPackage
|
||||
({ mkDerivation, aeson, async, base, containers, eventsource-api
|
||||
, eventsource-store-specs, mtl, protolude, stm, tasty, tasty-hspec
|
||||
, transformers-base
|
||||
, eventsource-store-specs, mtl, protolude, stm, streaming, tasty
|
||||
, tasty-hspec, transformers-base
|
||||
}:
|
||||
mkDerivation {
|
||||
pname = "eventsource-stub-store";
|
||||
version = "1.0.3";
|
||||
sha256 = "12vsn32m2h3bgssp2s6p1x90lj3h814iwplzhiyhmnaapq451h2w";
|
||||
version = "1.1.0";
|
||||
sha256 = "0rfbn3f6dw6m03f47f68if11xkjd98djhballl50zv7fqifcpz7h";
|
||||
libraryHaskellDepends = [
|
||||
async base containers eventsource-api mtl stm transformers-base
|
||||
async base containers eventsource-api mtl stm streaming
|
||||
transformers-base
|
||||
];
|
||||
testHaskellDepends = [
|
||||
aeson base eventsource-api eventsource-store-specs protolude tasty
|
||||
tasty-hspec
|
||||
aeson base eventsource-api eventsource-store-specs protolude
|
||||
streaming tasty tasty-hspec
|
||||
];
|
||||
description = "An in-memory stub store implementation";
|
||||
license = stdenv.lib.licenses.bsd3;
|
||||
|
@ -74148,8 +74215,8 @@ self: {
|
|||
}:
|
||||
mkDerivation {
|
||||
pname = "extensible-effects-concurrent";
|
||||
version = "0.14.3";
|
||||
sha256 = "1kzjrmj9zvjbr6j8gns81p212lnx9i60s5gdf67pwrww70abp5m6";
|
||||
version = "0.15.0";
|
||||
sha256 = "0hy1z2caqwyxqw1s3xxkbrzi3f86w3vzch783ajq41xqd6z8spdp";
|
||||
isLibrary = true;
|
||||
isExecutable = true;
|
||||
libraryHaskellDepends = [
|
||||
|
@ -86932,8 +86999,8 @@ self: {
|
|||
}:
|
||||
mkDerivation {
|
||||
pname = "git-annex";
|
||||
version = "7.20181205";
|
||||
sha256 = "0qh6s4ihbvxh3lqnwhzxfd0z06y5m6l5fy86cpf8xdmnaczgxk2d";
|
||||
version = "7.20181211";
|
||||
sha256 = "05zvi2z4fs2sprzgm31m6y1rhvwkhmjilvmgvyajzs12vzsaik6x";
|
||||
configureFlags = [
|
||||
"-fassistant" "-f-benchmark" "-fdbus" "-f-debuglocks" "-fmagicmime"
|
||||
"-fpairing" "-fproduction" "-fs3" "-ftorrentparser" "-fwebapp"
|
||||
|
@ -124454,6 +124521,26 @@ self: {
|
|||
license = stdenv.lib.licenses.bsd3;
|
||||
}) {};
|
||||
|
||||
"io-choice_0_0_7" = callPackage
|
||||
({ mkDerivation, base, hspec, lifted-base, monad-control
|
||||
, template-haskell, transformers, transformers-base
|
||||
}:
|
||||
mkDerivation {
|
||||
pname = "io-choice";
|
||||
version = "0.0.7";
|
||||
sha256 = "16v6b9r5k2y5vm2s8k3j7xc5wh77nqd8j636mc6wxcxwn3260jir";
|
||||
libraryHaskellDepends = [
|
||||
base lifted-base monad-control template-haskell transformers
|
||||
transformers-base
|
||||
];
|
||||
testHaskellDepends = [
|
||||
base hspec lifted-base monad-control transformers
|
||||
];
|
||||
description = "Choice for IO and lifted IO";
|
||||
license = stdenv.lib.licenses.bsd3;
|
||||
hydraPlatforms = stdenv.lib.platforms.none;
|
||||
}) {};
|
||||
|
||||
"io-machine" = callPackage
|
||||
({ mkDerivation, base, time }:
|
||||
mkDerivation {
|
||||
|
@ -124905,6 +124992,26 @@ self: {
|
|||
license = stdenv.lib.licenses.bsd3;
|
||||
}) {};
|
||||
|
||||
"iproute_1_7_7" = callPackage
|
||||
({ mkDerivation, appar, base, byteorder, containers, doctest, hspec
|
||||
, network, QuickCheck, safe
|
||||
}:
|
||||
mkDerivation {
|
||||
pname = "iproute";
|
||||
version = "1.7.7";
|
||||
sha256 = "0gab5930nvzrpvisx3x43ydnp2rd4fbmy9cq1zpgqy1adx5gx8z6";
|
||||
libraryHaskellDepends = [
|
||||
appar base byteorder containers network
|
||||
];
|
||||
testHaskellDepends = [
|
||||
appar base byteorder containers doctest hspec network QuickCheck
|
||||
safe
|
||||
];
|
||||
description = "IP Routing Table";
|
||||
license = stdenv.lib.licenses.bsd3;
|
||||
hydraPlatforms = stdenv.lib.platforms.none;
|
||||
}) {};
|
||||
|
||||
"iptables-helpers" = callPackage
|
||||
({ mkDerivation, base, containers, mtl, parsec, QuickCheck, safe
|
||||
, syb, utf8-string
|
||||
|
@ -131671,8 +131778,8 @@ self: {
|
|||
}:
|
||||
mkDerivation {
|
||||
pname = "language-ats";
|
||||
version = "1.7.0.4";
|
||||
sha256 = "1dqmb2wp47smjg55klwb2si8v14yahkrqzgzw9sssla9kyqna46n";
|
||||
version = "1.7.0.5";
|
||||
sha256 = "1vdn1f5bx395jynacmpsvfsyyr29jgpg1y25i1jmbkzjdzkb0h2b";
|
||||
enableSeparateDataOutput = true;
|
||||
libraryHaskellDepends = [
|
||||
ansi-wl-pprint array base composition-prelude containers deepseq
|
||||
|
@ -146523,10 +146630,8 @@ self: {
|
|||
}:
|
||||
mkDerivation {
|
||||
pname = "monad-dijkstra";
|
||||
version = "0.1.1.0";
|
||||
sha256 = "1vchyiaxawjgixxc9b3pssdrdmsy5ji0f3gwwgjr8gp0dp73yki4";
|
||||
revision = "1";
|
||||
editedCabalFile = "1jkxalyj9libzgg1whzp3dw152j8abxng4jm9xrh2y2i48dw412c";
|
||||
version = "0.1.1.1";
|
||||
sha256 = "0j29ffim7hwvj791na92yrbgly1frn0qvcpyc1z29837kawap190";
|
||||
libraryHaskellDepends = [ base free mtl psqueues transformers ];
|
||||
testHaskellDepends = [ base hlint tasty tasty-hspec ];
|
||||
description = "Monad transformer for weighted graph searches using Dijkstra's or A* algorithm";
|
||||
|
@ -156712,8 +156817,8 @@ self: {
|
|||
}:
|
||||
mkDerivation {
|
||||
pname = "oeis2";
|
||||
version = "0.1.0";
|
||||
sha256 = "17wzcf4zq8jg6kqd0mfkhcf37mkhjys1vzwpylhzkfgxwvhi4fjj";
|
||||
version = "1.0.0";
|
||||
sha256 = "0rrzdv5ida7vlvrpchzsjq3r8pnkrjxn8c6413qxnz2q512igi9l";
|
||||
libraryHaskellDepends = [
|
||||
aeson base containers http-conduit lens lens-aeson text vector
|
||||
];
|
||||
|
@ -172303,31 +172408,31 @@ self: {
|
|||
, data-default-class, deepseq, directory, filepath, hslogger, HTF
|
||||
, lens, messagepack, MissingH, mtl, nvim-hs, pretty-terminal
|
||||
, prettyprinter, process, resourcet, split, stm, strings, text
|
||||
, time, unliftio, utf8-string
|
||||
, time, transformers, unliftio, utf8-string
|
||||
}:
|
||||
mkDerivation {
|
||||
pname = "proteome";
|
||||
version = "0.3.4.0";
|
||||
sha256 = "1vyy8raj5xvdi8cik3f0awd1k6vi6bqikngpf4sqrvbgc5k3sr94";
|
||||
version = "0.3.5.0";
|
||||
sha256 = "029wrri1b6wdkl16wmiybg11685i2jdwx4n12i9hn01zsb7absnx";
|
||||
isLibrary = true;
|
||||
isExecutable = true;
|
||||
libraryHaskellDepends = [
|
||||
aeson ansi-terminal base bytestring containers data-default-class
|
||||
deepseq directory filepath hslogger lens messagepack MissingH mtl
|
||||
nvim-hs pretty-terminal prettyprinter process resourcet split stm
|
||||
strings text time unliftio utf8-string
|
||||
strings text time transformers unliftio utf8-string
|
||||
];
|
||||
executableHaskellDepends = [
|
||||
aeson ansi-terminal base bytestring containers data-default-class
|
||||
deepseq directory filepath hslogger lens messagepack MissingH mtl
|
||||
nvim-hs pretty-terminal prettyprinter process resourcet split stm
|
||||
strings text time unliftio utf8-string
|
||||
strings text time transformers unliftio utf8-string
|
||||
];
|
||||
testHaskellDepends = [
|
||||
aeson ansi-terminal base bytestring containers data-default-class
|
||||
deepseq directory filepath hslogger HTF lens messagepack MissingH
|
||||
mtl nvim-hs pretty-terminal prettyprinter process resourcet split
|
||||
stm strings text time unliftio utf8-string
|
||||
stm strings text time transformers unliftio utf8-string
|
||||
];
|
||||
description = "neovim project manager";
|
||||
license = stdenv.lib.licenses.mit;
|
||||
|
@ -178454,8 +178559,8 @@ self: {
|
|||
({ mkDerivation, base, composition-prelude }:
|
||||
mkDerivation {
|
||||
pname = "recursion";
|
||||
version = "1.2.1.1";
|
||||
sha256 = "0dh50664y470281gjiwkmdz8abiwgqin9r1ymznldwm37c3jljv5";
|
||||
version = "2.0.0.0";
|
||||
sha256 = "1mjq7jk2r97fkkq77c1ynrqk4qf39xh74wjpzqnva9bpm62pyqn5";
|
||||
libraryHaskellDepends = [ base composition-prelude ];
|
||||
description = "A recursion schemes library for GHC";
|
||||
license = stdenv.lib.licenses.bsd3;
|
||||
|
@ -210720,6 +210825,24 @@ self: {
|
|||
license = stdenv.lib.licenses.bsd3;
|
||||
}) {};
|
||||
|
||||
"test-lib" = callPackage
|
||||
({ mkDerivation, base, containers, directory, filepath, HUnit
|
||||
, process, simple-get-opt, test-framework, test-framework-hunit
|
||||
}:
|
||||
mkDerivation {
|
||||
pname = "test-lib";
|
||||
version = "0.1.0.0";
|
||||
sha256 = "1vwn32nsfz19gd620a8wbiwdhmq863lgxq4sibrl8x5hmypygxcc";
|
||||
revision = "1";
|
||||
editedCabalFile = "0dsyihhzlrdiy6v1jpgdr08algm1zrwpdqx6zzfjwddm4bl2bc59";
|
||||
libraryHaskellDepends = [
|
||||
base containers directory filepath HUnit process simple-get-opt
|
||||
test-framework test-framework-hunit
|
||||
];
|
||||
description = "A library to make a quick test-runner script";
|
||||
license = stdenv.lib.licenses.isc;
|
||||
}) {};
|
||||
|
||||
"test-pkg" = callPackage
|
||||
({ mkDerivation, base }:
|
||||
mkDerivation {
|
||||
|
@ -215384,8 +215507,8 @@ self: {
|
|||
}:
|
||||
mkDerivation {
|
||||
pname = "toodles";
|
||||
version = "1.0.1";
|
||||
sha256 = "0k94a6am7cmqhia543rmaw06xl0xq5lx22q1sb01x3l96sxh1aa8";
|
||||
version = "1.0.2";
|
||||
sha256 = "066nc1xgy9g7w82f0s1lagxjpf5hw9zxpnbcf5lbjdj58ssrkdr5";
|
||||
isLibrary = true;
|
||||
isExecutable = true;
|
||||
enableSeparateDataOutput = true;
|
||||
|
@ -221333,6 +221456,32 @@ self: {
|
|||
license = stdenv.lib.licenses.mit;
|
||||
}) {};
|
||||
|
||||
"unliftio_0_2_9_0" = callPackage
|
||||
({ mkDerivation, async, base, deepseq, directory, filepath, gauge
|
||||
, hspec, process, QuickCheck, stm, time, transformers, unix
|
||||
, unliftio-core
|
||||
}:
|
||||
mkDerivation {
|
||||
pname = "unliftio";
|
||||
version = "0.2.9.0";
|
||||
sha256 = "1f1rrmajnz5j2ljryi9gqx64hjr30yy7pz9rjx02pdfi6alrcrgz";
|
||||
libraryHaskellDepends = [
|
||||
async base deepseq directory filepath process stm time transformers
|
||||
unix unliftio-core
|
||||
];
|
||||
testHaskellDepends = [
|
||||
async base deepseq directory filepath hspec process QuickCheck stm
|
||||
time transformers unix unliftio-core
|
||||
];
|
||||
benchmarkHaskellDepends = [
|
||||
async base deepseq directory filepath gauge process stm time
|
||||
transformers unix unliftio-core
|
||||
];
|
||||
description = "The MonadUnliftIO typeclass for unlifting monads to IO (batteries included)";
|
||||
license = stdenv.lib.licenses.mit;
|
||||
hydraPlatforms = stdenv.lib.platforms.none;
|
||||
}) {};
|
||||
|
||||
"unliftio-core" = callPackage
|
||||
({ mkDerivation, base, transformers }:
|
||||
mkDerivation {
|
||||
|
|
Loading…
Reference in New Issue