mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
hackage-packages.nix: automatic Haskell package set update
This update was generated by hackage2nix v2.16.0-13-gefcfbb2 from Hackage revision
20267f89a1
.
This commit is contained in:
parent
6e1562761b
commit
c1157b0ba5
1 changed files with 186 additions and 40 deletions
226
pkgs/development/haskell-modules/hackage-packages.nix
generated
226
pkgs/development/haskell-modules/hackage-packages.nix
generated
|
@ -37958,8 +37958,8 @@ self: {
|
|||
pname = "base16";
|
||||
version = "0.3.0.1";
|
||||
sha256 = "10id9h9mas4kb4kfiz7hhp2hhwnb9mh92pr327c53jqxi4hazgnd";
|
||||
revision = "3";
|
||||
editedCabalFile = "15r912hb0l92f2cajpq2b6ky4g5qwfmb502nfv1vrg02a1h25xb6";
|
||||
revision = "4";
|
||||
editedCabalFile = "05fpdw8qkdg7cfyfsnk5npcxqgjgasd8hi096nh6czj96xn4s1b6";
|
||||
libraryHaskellDepends = [
|
||||
base bytestring deepseq primitive text text-short
|
||||
];
|
||||
|
@ -38032,8 +38032,8 @@ self: {
|
|||
pname = "base32";
|
||||
version = "0.2.0.0";
|
||||
sha256 = "0xvilxcdcvz07f3qpad35whjd35c9ykicip2cdsd54ysxg71mwzm";
|
||||
revision = "1";
|
||||
editedCabalFile = "0vsc0fq4rihhx4hicfgy1xpfm1bbq4rnwgfs9qzgmwhslffqy2x5";
|
||||
revision = "2";
|
||||
editedCabalFile = "0chbgkq65mh6nc48a3hywcv7idfqgb3acv4b7gmz8m6szqq4mx95";
|
||||
libraryHaskellDepends = [
|
||||
base bytestring deepseq ghc-byteorder text text-short
|
||||
];
|
||||
|
@ -38196,6 +38196,8 @@ self: {
|
|||
pname = "base64";
|
||||
version = "0.4.2.3";
|
||||
sha256 = "1hdqswxhgjrg8akl5v99hbm02gkpagsbx4i7fxbzdys1k0bj3gxw";
|
||||
revision = "1";
|
||||
editedCabalFile = "10s7nw79q385f74x76rh8cy0dxfj7idzrj77ng9x32bf8h7jpa6q";
|
||||
libraryHaskellDepends = [
|
||||
base bytestring deepseq ghc-byteorder text text-short
|
||||
];
|
||||
|
@ -43005,6 +43007,31 @@ self: {
|
|||
broken = true;
|
||||
}) {};
|
||||
|
||||
"bitwise-enum_1_0_1_0" = callPackage
|
||||
({ mkDerivation, aeson, array, base, deepseq, gauge
|
||||
, mono-traversable, QuickCheck, test-framework
|
||||
, test-framework-quickcheck2, vector, wide-word
|
||||
}:
|
||||
mkDerivation {
|
||||
pname = "bitwise-enum";
|
||||
version = "1.0.1.0";
|
||||
sha256 = "0vmdr8csmxwab7s4nmqdfpqdssivh90fddk94i8wkwj1la867y1z";
|
||||
libraryHaskellDepends = [
|
||||
aeson array base deepseq mono-traversable vector
|
||||
];
|
||||
testHaskellDepends = [
|
||||
aeson array base deepseq mono-traversable QuickCheck test-framework
|
||||
test-framework-quickcheck2 vector
|
||||
];
|
||||
benchmarkHaskellDepends = [
|
||||
aeson array base deepseq gauge mono-traversable vector wide-word
|
||||
];
|
||||
description = "Bitwise operations on bounded enumerations";
|
||||
license = lib.licenses.bsd3;
|
||||
hydraPlatforms = lib.platforms.none;
|
||||
broken = true;
|
||||
}) {};
|
||||
|
||||
"bitx-bitcoin" = callPackage
|
||||
({ mkDerivation, aeson, base, bytestring, deepseq, directory
|
||||
, doctest, exceptions, hspec, http-client, http-client-tls
|
||||
|
@ -45689,7 +45716,6 @@ self: {
|
|||
];
|
||||
description = "Haskell source code formatter";
|
||||
license = lib.licenses.agpl3;
|
||||
maintainers = with lib.maintainers; [ maralorn ];
|
||||
}) {};
|
||||
|
||||
"broadcast-chan" = callPackage
|
||||
|
@ -100269,6 +100295,8 @@ self: {
|
|||
pname = "ghc-byteorder";
|
||||
version = "4.11.0.0.10";
|
||||
sha256 = "1dhzd7ygwm7b3hsrlm48iq4p634laby4hf7c8i7xp0c1g64hmrc6";
|
||||
revision = "1";
|
||||
editedCabalFile = "1qwx6569079a8viq2plkpc1wlqdz8syys6hvx68m051a7zvdwzyl";
|
||||
libraryHaskellDepends = [ base ];
|
||||
testHaskellDepends = [ base ];
|
||||
doHaddock = false;
|
||||
|
@ -101379,6 +101407,19 @@ self: {
|
|||
license = lib.licenses.bsd3;
|
||||
}) {};
|
||||
|
||||
"ghc-trace-events_0_1_2_2" = callPackage
|
||||
({ mkDerivation, base, bytestring, tasty-bench, text }:
|
||||
mkDerivation {
|
||||
pname = "ghc-trace-events";
|
||||
version = "0.1.2.2";
|
||||
sha256 = "18vhv99lrfjx6bxww77qxg7gwqmvpylvlrq1bji0hd6mcxxdjn69";
|
||||
libraryHaskellDepends = [ base bytestring text ];
|
||||
benchmarkHaskellDepends = [ base bytestring tasty-bench ];
|
||||
description = "Faster traceEvent and traceMarker, and binary object logging for eventlog";
|
||||
license = lib.licenses.bsd3;
|
||||
hydraPlatforms = lib.platforms.none;
|
||||
}) {};
|
||||
|
||||
"ghc-typelits-extra" = callPackage
|
||||
({ mkDerivation, base, containers, ghc, ghc-prim
|
||||
, ghc-tcplugins-extra, ghc-typelits-knownnat
|
||||
|
@ -101766,7 +101807,6 @@ self: {
|
|||
description = "The core of an IDE";
|
||||
license = lib.licenses.asl20;
|
||||
hydraPlatforms = lib.platforms.none;
|
||||
maintainers = with lib.maintainers; [ maralorn ];
|
||||
broken = true;
|
||||
}) {shake-bench = null;};
|
||||
|
||||
|
@ -101832,7 +101872,6 @@ self: {
|
|||
description = "The core of an IDE";
|
||||
license = lib.licenses.asl20;
|
||||
hydraPlatforms = lib.platforms.none;
|
||||
maintainers = with lib.maintainers; [ maralorn ];
|
||||
broken = true;
|
||||
}) {shake-bench = null;};
|
||||
|
||||
|
@ -118293,6 +118332,7 @@ self: {
|
|||
testToolDepends = [ ghcide ];
|
||||
description = "LSP server for GHC";
|
||||
license = lib.licenses.asl20;
|
||||
maintainers = with lib.maintainers; [ maralorn ];
|
||||
}) {};
|
||||
|
||||
"haskell-lexer" = callPackage
|
||||
|
@ -129212,7 +129252,6 @@ self: {
|
|||
executableHaskellDepends = [ base ];
|
||||
description = "Source code suggestions";
|
||||
license = lib.licenses.bsd3;
|
||||
maintainers = with lib.maintainers; [ maralorn ];
|
||||
}) {};
|
||||
|
||||
"hlint-test" = callPackage
|
||||
|
@ -141123,6 +141162,8 @@ self: {
|
|||
testHaskellDepends = [ base ];
|
||||
description = "AWS SQS conduit";
|
||||
license = lib.licenses.bsd3;
|
||||
hydraPlatforms = lib.platforms.none;
|
||||
broken = true;
|
||||
}) {};
|
||||
|
||||
"hw-balancedparens" = callPackage
|
||||
|
@ -161724,6 +161765,28 @@ self: {
|
|||
license = lib.licenses.bsd3;
|
||||
}) {};
|
||||
|
||||
"lifted-async_0_10_1_3" = callPackage
|
||||
({ mkDerivation, async, base, constraints, deepseq, HUnit
|
||||
, lifted-base, monad-control, mtl, tasty, tasty-bench
|
||||
, tasty-expected-failure, tasty-hunit, tasty-th, transformers-base
|
||||
}:
|
||||
mkDerivation {
|
||||
pname = "lifted-async";
|
||||
version = "0.10.1.3";
|
||||
sha256 = "1hml672j8sqxhklxif3nwr8v59a596wwwbllq0zvvmlxcjdzlh7k";
|
||||
libraryHaskellDepends = [
|
||||
async base constraints lifted-base monad-control transformers-base
|
||||
];
|
||||
testHaskellDepends = [
|
||||
async base HUnit lifted-base monad-control mtl tasty
|
||||
tasty-expected-failure tasty-hunit tasty-th
|
||||
];
|
||||
benchmarkHaskellDepends = [ async base deepseq tasty-bench ];
|
||||
description = "Run lifted IO operations asynchronously and wait for their results";
|
||||
license = lib.licenses.bsd3;
|
||||
hydraPlatforms = lib.platforms.none;
|
||||
}) {};
|
||||
|
||||
"lifted-base" = callPackage
|
||||
({ mkDerivation, base, criterion, HUnit, monad-control, monad-peel
|
||||
, test-framework, test-framework-hunit, transformers
|
||||
|
@ -162817,6 +162880,17 @@ self: {
|
|||
broken = true;
|
||||
}) {blkid = null;};
|
||||
|
||||
"linux-capabilities" = callPackage
|
||||
({ mkDerivation, base }:
|
||||
mkDerivation {
|
||||
pname = "linux-capabilities";
|
||||
version = "0.1.0.0";
|
||||
sha256 = "033mnbxg9bzi3cc4js22gpi96g5yslv6sksxdsgab5k075gad85k";
|
||||
libraryHaskellDepends = [ base ];
|
||||
description = "Linux capabilities Haskell data type";
|
||||
license = lib.licenses.asl20;
|
||||
}) {};
|
||||
|
||||
"linux-cgroup" = callPackage
|
||||
({ mkDerivation, base, filepath }:
|
||||
mkDerivation {
|
||||
|
@ -232352,6 +232426,8 @@ self: {
|
|||
];
|
||||
description = "Secure, modular server-side sessions";
|
||||
license = lib.licenses.mit;
|
||||
hydraPlatforms = lib.platforms.none;
|
||||
broken = true;
|
||||
}) {};
|
||||
|
||||
"serversession-backend-acid-state" = callPackage
|
||||
|
@ -232442,6 +232518,8 @@ self: {
|
|||
];
|
||||
description = "Snap bindings for serversession";
|
||||
license = lib.licenses.mit;
|
||||
hydraPlatforms = lib.platforms.none;
|
||||
broken = true;
|
||||
}) {};
|
||||
|
||||
"serversession-frontend-wai" = callPackage
|
||||
|
@ -232459,6 +232537,8 @@ self: {
|
|||
];
|
||||
description = "wai-session bindings for serversession";
|
||||
license = lib.licenses.mit;
|
||||
hydraPlatforms = lib.platforms.none;
|
||||
broken = true;
|
||||
}) {};
|
||||
|
||||
"serversession-frontend-yesod" = callPackage
|
||||
|
@ -252732,6 +252812,18 @@ self: {
|
|||
license = lib.licenses.mit;
|
||||
}) {};
|
||||
|
||||
"tasty-bench_0_2_2" = callPackage
|
||||
({ mkDerivation, base, containers, deepseq, tasty }:
|
||||
mkDerivation {
|
||||
pname = "tasty-bench";
|
||||
version = "0.2.2";
|
||||
sha256 = "0x6kg8n778nysv3b7j31bnh62h5srid35nhmvr76bzba4qdgx258";
|
||||
libraryHaskellDepends = [ base containers deepseq tasty ];
|
||||
description = "Featherlight benchmark framework";
|
||||
license = lib.licenses.mit;
|
||||
hydraPlatforms = lib.platforms.none;
|
||||
}) {};
|
||||
|
||||
"tasty-dejafu" = callPackage
|
||||
({ mkDerivation, base, dejafu, random, tagged, tasty }:
|
||||
mkDerivation {
|
||||
|
@ -261067,45 +261159,44 @@ self: {
|
|||
}) {};
|
||||
|
||||
"too-many-cells" = callPackage
|
||||
({ mkDerivation, aeson, base, birch-beer, bytestring, cassava
|
||||
, colour, containers, deepseq, diagrams, diagrams-cairo
|
||||
, diagrams-graphviz, diagrams-lib, differential, directory
|
||||
, diversity, fgl, filepath, find-clumpiness, foldl, graphviz
|
||||
({ mkDerivation, aeson, async, async-pool, attoparsec, base
|
||||
, birch-beer, bytestring, cassava, colour, containers, deepseq
|
||||
, diagrams, diagrams-cairo, diagrams-graphviz, diagrams-lib
|
||||
, differential, directory, diversity, fgl, filepath
|
||||
, find-clumpiness, foldl, graphviz, hashable
|
||||
, hierarchical-clustering, hierarchical-spectral-clustering
|
||||
, hmatrix, inline-r, lens, managed, matrix-market-attoparsec
|
||||
, modularity, mtl, optparse-generic, palette, parallel, plots, safe
|
||||
, scientific, sparse-linear-algebra, spectral-clustering, split
|
||||
, statistics, streaming, streaming-bytestring, streaming-cassava
|
||||
, streaming-utils, streaming-with, SVGFonts, temporary
|
||||
, terminal-progress-bar, text, text-show, transformers, vector
|
||||
, vector-algorithms, zlib
|
||||
, hmatrix, hmatrix-svdlibc, inline-r, IntervalMap, lens, managed
|
||||
, matrix-market-attoparsec, modularity, mtl, mwc-random
|
||||
, optparse-generic, palette, parallel, plots, process, resourcet
|
||||
, safe, scientific, sparse-linear-algebra, spectral-clustering
|
||||
, split, statistics, stm, streaming, streaming-bytestring
|
||||
, streaming-cassava, streaming-commons, streaming-utils
|
||||
, streaming-with, SVGFonts, system-filepath, temporary
|
||||
, terminal-progress-bar, text, text-show, transformers, turtle
|
||||
, unordered-containers, vector, vector-algorithms, zlib
|
||||
}:
|
||||
mkDerivation {
|
||||
pname = "too-many-cells";
|
||||
version = "0.2.2.2";
|
||||
sha256 = "091hqg4wxki8v7xkrzmnh1hpm81pif936pbmrzvr5p84sbbyyj91";
|
||||
version = "2.1.0.1";
|
||||
sha256 = "0clrkr7kxcky6l1gwnbznz013svn7254n8fkkb7mgvn93h94anky";
|
||||
isLibrary = true;
|
||||
isExecutable = true;
|
||||
libraryHaskellDepends = [
|
||||
aeson base birch-beer bytestring cassava colour containers deepseq
|
||||
diagrams diagrams-cairo diagrams-graphviz diagrams-lib differential
|
||||
directory diversity fgl filepath find-clumpiness foldl graphviz
|
||||
aeson async async-pool attoparsec base birch-beer bytestring
|
||||
cassava colour containers deepseq diagrams diagrams-cairo
|
||||
diagrams-graphviz diagrams-lib differential directory diversity fgl
|
||||
filepath find-clumpiness foldl graphviz hashable
|
||||
hierarchical-clustering hierarchical-spectral-clustering hmatrix
|
||||
inline-r lens managed matrix-market-attoparsec modularity mtl
|
||||
palette parallel plots safe scientific sparse-linear-algebra split
|
||||
statistics streaming streaming-bytestring streaming-cassava
|
||||
streaming-with SVGFonts temporary text text-show vector
|
||||
vector-algorithms zlib
|
||||
];
|
||||
executableHaskellDepends = [
|
||||
aeson base birch-beer bytestring cassava colour containers
|
||||
diagrams-cairo diagrams-lib directory fgl filepath find-clumpiness
|
||||
graphviz hierarchical-spectral-clustering inline-r lens
|
||||
matrix-market-attoparsec modularity mtl optparse-generic palette
|
||||
plots spectral-clustering streaming streaming-bytestring
|
||||
streaming-utils terminal-progress-bar text text-show transformers
|
||||
vector
|
||||
hmatrix-svdlibc inline-r IntervalMap lens managed
|
||||
matrix-market-attoparsec modularity mtl mwc-random optparse-generic
|
||||
palette parallel plots process resourcet safe scientific
|
||||
sparse-linear-algebra spectral-clustering split statistics stm
|
||||
streaming streaming-bytestring streaming-cassava streaming-commons
|
||||
streaming-utils streaming-with SVGFonts system-filepath temporary
|
||||
terminal-progress-bar text text-show transformers turtle
|
||||
unordered-containers vector vector-algorithms zlib
|
||||
];
|
||||
executableHaskellDepends = [ base optparse-generic ];
|
||||
description = "Cluster single cells and analyze cell clade relationships";
|
||||
license = lib.licenses.gpl3;
|
||||
hydraPlatforms = lib.platforms.none;
|
||||
|
@ -280951,6 +281042,36 @@ self: {
|
|||
broken = true;
|
||||
}) {};
|
||||
|
||||
"xlsx_0_8_3" = callPackage
|
||||
({ mkDerivation, attoparsec, base, base64-bytestring, binary-search
|
||||
, bytestring, conduit, containers, criterion, data-default, deepseq
|
||||
, Diff, errors, extra, filepath, groom, lens, mtl, network-uri
|
||||
, old-locale, raw-strings-qq, safe, smallcheck, tasty, tasty-hunit
|
||||
, tasty-smallcheck, text, time, transformers, vector, xeno
|
||||
, xml-conduit, zip-archive, zlib
|
||||
}:
|
||||
mkDerivation {
|
||||
pname = "xlsx";
|
||||
version = "0.8.3";
|
||||
sha256 = "11g6bfir21wgafnkzzx26r6mz8m39isaz2yqw92k5ymdb1qhs95q";
|
||||
libraryHaskellDepends = [
|
||||
attoparsec base base64-bytestring binary-search bytestring conduit
|
||||
containers data-default deepseq errors extra filepath lens mtl
|
||||
network-uri old-locale safe text time transformers vector xeno
|
||||
xml-conduit zip-archive zlib
|
||||
];
|
||||
testHaskellDepends = [
|
||||
base bytestring containers Diff groom lens mtl raw-strings-qq
|
||||
smallcheck tasty tasty-hunit tasty-smallcheck text time vector
|
||||
xml-conduit
|
||||
];
|
||||
benchmarkHaskellDepends = [ base bytestring criterion ];
|
||||
description = "Simple and incomplete Excel file parser/writer";
|
||||
license = lib.licenses.mit;
|
||||
hydraPlatforms = lib.platforms.none;
|
||||
broken = true;
|
||||
}) {};
|
||||
|
||||
"xlsx-tabular" = callPackage
|
||||
({ mkDerivation, aeson, base, bytestring, containers, data-default
|
||||
, lens, text, xlsx
|
||||
|
@ -282658,8 +282779,8 @@ self: {
|
|||
}:
|
||||
mkDerivation {
|
||||
pname = "yahoo-prices";
|
||||
version = "0.1.0.1";
|
||||
sha256 = "0r0cjhnbskhyfswzv37vfichvpsay2n0pi4bwyis52szddhn4cxx";
|
||||
version = "0.1.0.2";
|
||||
sha256 = "1zyrj6rq75blzh1v9ja2bbyfaf3c2a6648lcmflmxmd45350ah9f";
|
||||
libraryHaskellDepends = [
|
||||
base bytestring cassava lens time vector wreq
|
||||
];
|
||||
|
@ -287912,6 +288033,31 @@ self: {
|
|||
license = lib.licenses.bsd3;
|
||||
}) {};
|
||||
|
||||
"zip-stream_0_2_1_0" = callPackage
|
||||
({ mkDerivation, base, binary, binary-conduit, bytestring, conduit
|
||||
, conduit-extra, digest, directory, exceptions, filepath, mtl
|
||||
, primitive, resourcet, text, time, transformers, transformers-base
|
||||
, zlib
|
||||
}:
|
||||
mkDerivation {
|
||||
pname = "zip-stream";
|
||||
version = "0.2.1.0";
|
||||
sha256 = "0fx8kj0ijm3555grhdns7agmi084584fh1v0mvkm4x696h1zzvli";
|
||||
isLibrary = true;
|
||||
isExecutable = true;
|
||||
libraryHaskellDepends = [
|
||||
base binary binary-conduit bytestring conduit conduit-extra digest
|
||||
exceptions mtl primitive resourcet text time transformers-base zlib
|
||||
];
|
||||
executableHaskellDepends = [
|
||||
base bytestring conduit conduit-extra directory filepath resourcet
|
||||
text time transformers
|
||||
];
|
||||
description = "ZIP archive streaming using conduits";
|
||||
license = lib.licenses.bsd3;
|
||||
hydraPlatforms = lib.platforms.none;
|
||||
}) {};
|
||||
|
||||
"zipedit" = callPackage
|
||||
({ mkDerivation, base, directory, mtl, process }:
|
||||
mkDerivation {
|
||||
|
|
Loading…
Reference in a new issue