hackage-packages.nix: re-generate from Hackage 2015-01-26T16:59:26+0100
This commit is contained in:
parent
95632fdbf5
commit
334a186340
@ -63,6 +63,7 @@ self: super: {
|
|||||||
attoparsec = dontCheck super.attoparsec;
|
attoparsec = dontCheck super.attoparsec;
|
||||||
|
|
||||||
# test suite hangs silently for at least 10 minutes
|
# test suite hangs silently for at least 10 minutes
|
||||||
|
ChasingBottoms = dontCheck super.ChasingBottoms;
|
||||||
split = dontCheck super.split;
|
split = dontCheck super.split;
|
||||||
|
|
||||||
# Test suite fails with some (seemingly harmless) error.
|
# Test suite fails with some (seemingly harmless) error.
|
||||||
|
@ -31689,6 +31689,18 @@ self: {
|
|||||||
hydraPlatforms = stdenv.lib.platforms.none;
|
hydraPlatforms = stdenv.lib.platforms.none;
|
||||||
}) {};
|
}) {};
|
||||||
|
|
||||||
|
"constrained-categories" = callPackage
|
||||||
|
({ mkDerivation, base, tagged, void }:
|
||||||
|
mkDerivation {
|
||||||
|
pname = "constrained-categories";
|
||||||
|
version = "0.1.0.0";
|
||||||
|
sha256 = "02vsadayxch5dl77jl4dpk36zj4wpkgrpwlad3swk8dyfqyf4jfk";
|
||||||
|
buildDepends = [ base tagged void ];
|
||||||
|
homepage = "https://github.com/leftaroundabout/constrained-categories";
|
||||||
|
description = "Constrained clones of the category-theory type classes, using ConstraintKinds";
|
||||||
|
license = stdenv.lib.licenses.gpl3;
|
||||||
|
}) {};
|
||||||
|
|
||||||
"constrained-normal" = callPackage
|
"constrained-normal" = callPackage
|
||||||
({ mkDerivation, base }:
|
({ mkDerivation, base }:
|
||||||
mkDerivation {
|
mkDerivation {
|
||||||
@ -61832,8 +61844,8 @@ self: {
|
|||||||
}:
|
}:
|
||||||
mkDerivation {
|
mkDerivation {
|
||||||
pname = "hpc-coveralls";
|
pname = "hpc-coveralls";
|
||||||
version = "0.8.2";
|
version = "0.8.3";
|
||||||
sha256 = "1iz500x71gc7isl69ij74p4nbg4619k6d619cqar3rcjna3sc2fr";
|
sha256 = "02nqp267dcqrl81p7pn0bwpi44lakwl6pi47n9i1cnr7abcadglb";
|
||||||
isLibrary = true;
|
isLibrary = true;
|
||||||
isExecutable = true;
|
isExecutable = true;
|
||||||
buildDepends = [
|
buildDepends = [
|
||||||
@ -67481,8 +67493,8 @@ self: {
|
|||||||
({ mkDerivation, base }:
|
({ mkDerivation, base }:
|
||||||
mkDerivation {
|
mkDerivation {
|
||||||
pname = "ieee754";
|
pname = "ieee754";
|
||||||
version = "0.7.5";
|
version = "0.7.6";
|
||||||
sha256 = "0109mhyk76xnbsbpnnz3skpvxjckcldlpq93dvfgy5zahmswl4r3";
|
sha256 = "03s56h82n7hcwcn2dhd646prcf9wxj5jq49xqsnl7cnvi9768h2q";
|
||||||
buildDepends = [ base ];
|
buildDepends = [ base ];
|
||||||
homepage = "http://github.com/patperry/hs-ieee754";
|
homepage = "http://github.com/patperry/hs-ieee754";
|
||||||
description = "Utilities for dealing with IEEE floating point numbers";
|
description = "Utilities for dealing with IEEE floating point numbers";
|
||||||
@ -77146,8 +77158,8 @@ self: {
|
|||||||
}:
|
}:
|
||||||
mkDerivation {
|
mkDerivation {
|
||||||
pname = "machinecell";
|
pname = "machinecell";
|
||||||
version = "1.3.0";
|
version = "1.3.1";
|
||||||
sha256 = "1as4cfckdfkiis9m28a5k35z0vmb8lg8wrm8623glvz57s0n4gq3";
|
sha256 = "1v4rrjszh6sm2x1nwq33f4xwa41bnls0awhy9qfkap62bpad8fxg";
|
||||||
buildDepends = [ arrows base free mtl profunctors semigroups ];
|
buildDepends = [ arrows base free mtl profunctors semigroups ];
|
||||||
testDepends = [ base hspec mtl profunctors QuickCheck ];
|
testDepends = [ base hspec mtl profunctors QuickCheck ];
|
||||||
homepage = "http://github.com/as-capabl/machinecell";
|
homepage = "http://github.com/as-capabl/machinecell";
|
||||||
@ -79530,15 +79542,16 @@ self: {
|
|||||||
}) {};
|
}) {};
|
||||||
|
|
||||||
"minioperational" = callPackage
|
"minioperational" = callPackage
|
||||||
({ mkDerivation, base, clean-unions, containers, elevator
|
({ mkDerivation, base, containers, elevator, extensible, mtl
|
||||||
, template-haskell, transformers
|
, template-haskell, transformers
|
||||||
}:
|
}:
|
||||||
mkDerivation {
|
mkDerivation {
|
||||||
pname = "minioperational";
|
pname = "minioperational";
|
||||||
version = "0.4.8.1";
|
version = "0.4.9";
|
||||||
sha256 = "02nkgbpf1dky7h3n99j9m3101wyfahcdx5wk5vidvf9snl5vy1w9";
|
sha256 = "0kbfk3gpgzxi84kyjf7awdc2x579339zd7c42khlflhk6y88j95m";
|
||||||
buildDepends = [
|
buildDepends = [
|
||||||
base clean-unions containers elevator template-haskell transformers
|
base containers elevator extensible mtl template-haskell
|
||||||
|
transformers
|
||||||
];
|
];
|
||||||
homepage = "https://github.com/fumieval/minioperational";
|
homepage = "https://github.com/fumieval/minioperational";
|
||||||
description = "fast and simple operational monad";
|
description = "fast and simple operational monad";
|
||||||
@ -96620,8 +96633,8 @@ self: {
|
|||||||
}:
|
}:
|
||||||
mkDerivation {
|
mkDerivation {
|
||||||
pname = "rest-client";
|
pname = "rest-client";
|
||||||
version = "0.4.0.3";
|
version = "0.4.0.4";
|
||||||
sha256 = "01rdv19zkc6c3q69vh56wip4drgv1i9ibc2mfjcqlsfbil46a6v3";
|
sha256 = "1ssbjrzvnhq17808p6k8cyg1n62mrpvspf6gq16n7zkvydwdj0ks";
|
||||||
buildDepends = [
|
buildDepends = [
|
||||||
aeson-utils base bytestring case-insensitive data-default
|
aeson-utils base bytestring case-insensitive data-default
|
||||||
exception-transformers http-conduit http-types hxt hxt-pickle-utils
|
exception-transformers http-conduit http-types hxt hxt-pickle-utils
|
||||||
@ -96641,8 +96654,8 @@ self: {
|
|||||||
}:
|
}:
|
||||||
mkDerivation {
|
mkDerivation {
|
||||||
pname = "rest-core";
|
pname = "rest-core";
|
||||||
version = "0.34.0.1";
|
version = "0.34.0.2";
|
||||||
sha256 = "0jy0gmz9zc9lwbmnbmdka5zasfizqddvvcp7a924papgdvslxg6i";
|
sha256 = "0n9ipdbs0jq7knmqcrdagxqh8anrbl78fbw0j4qijrl4f0nxs0rh";
|
||||||
buildDepends = [
|
buildDepends = [
|
||||||
aeson aeson-utils base bytestring either errors fclabels hxt
|
aeson aeson-utils base bytestring either errors fclabels hxt
|
||||||
hxt-pickle-utils json-schema mtl multipart random rest-stringmap
|
hxt-pickle-utils json-schema mtl multipart random rest-stringmap
|
||||||
@ -96711,8 +96724,8 @@ self: {
|
|||||||
}:
|
}:
|
||||||
mkDerivation {
|
mkDerivation {
|
||||||
pname = "rest-happstack";
|
pname = "rest-happstack";
|
||||||
version = "0.2.10.5";
|
version = "0.2.10.6";
|
||||||
sha256 = "124zg4nrsxgdd1fs860g2mvvvkyc3ybwpvv79a0mv2ij4l6m4jp0";
|
sha256 = "0b21wg4nj24yqh6akyaaw7dxmkdvvb7d9l0d32mz3hx4m2jq9ay5";
|
||||||
buildDepends = [
|
buildDepends = [
|
||||||
base containers happstack-server mtl rest-core rest-gen utf8-string
|
base containers happstack-server mtl rest-core rest-gen utf8-string
|
||||||
];
|
];
|
||||||
@ -96726,8 +96739,8 @@ self: {
|
|||||||
}:
|
}:
|
||||||
mkDerivation {
|
mkDerivation {
|
||||||
pname = "rest-snap";
|
pname = "rest-snap";
|
||||||
version = "0.1.17.15";
|
version = "0.1.17.16";
|
||||||
sha256 = "064sz7rflyj7sc4nm3qjdla6hf0kjw584rbb6iv7ihl1ay2cspl4";
|
sha256 = "02dh2wjhaabg2aabsf7gl5w65kqpb3jigawwh9n2dr4hz6jhvwia";
|
||||||
buildDepends = [
|
buildDepends = [
|
||||||
base bytestring case-insensitive rest-core safe snap-core
|
base bytestring case-insensitive rest-core safe snap-core
|
||||||
unordered-containers uri-encode utf8-string
|
unordered-containers uri-encode utf8-string
|
||||||
@ -96771,15 +96784,15 @@ self: {
|
|||||||
"rest-wai" = callPackage
|
"rest-wai" = callPackage
|
||||||
({ mkDerivation, base, bytestring, case-insensitive, containers
|
({ mkDerivation, base, bytestring, case-insensitive, containers
|
||||||
, http-types, mime-types, mtl, rest-core, text
|
, http-types, mime-types, mtl, rest-core, text
|
||||||
, unordered-containers, utf8-string, wai
|
, unordered-containers, wai
|
||||||
}:
|
}:
|
||||||
mkDerivation {
|
mkDerivation {
|
||||||
pname = "rest-wai";
|
pname = "rest-wai";
|
||||||
version = "0.1.0.5";
|
version = "0.1.0.6";
|
||||||
sha256 = "1i0pgazgsh4wdlag9a0c4qzspkij8icliv5njsv1fxn7b3lay0cm";
|
sha256 = "1pawc1msv8vc43jzq4ynirwv6k7l7bfrh8r6q8m2vk1rnl6zsbxz";
|
||||||
buildDepends = [
|
buildDepends = [
|
||||||
base bytestring case-insensitive containers http-types mime-types
|
base bytestring case-insensitive containers http-types mime-types
|
||||||
mtl rest-core text unordered-containers utf8-string wai
|
mtl rest-core text unordered-containers wai
|
||||||
];
|
];
|
||||||
description = "Rest driver for WAI applications";
|
description = "Rest driver for WAI applications";
|
||||||
license = stdenv.lib.licenses.bsd3;
|
license = stdenv.lib.licenses.bsd3;
|
||||||
@ -112757,8 +112770,8 @@ self: {
|
|||||||
({ mkDerivation, base, case-insensitive, text, utf8-string }:
|
({ mkDerivation, base, case-insensitive, text, utf8-string }:
|
||||||
mkDerivation {
|
mkDerivation {
|
||||||
pname = "tostring";
|
pname = "tostring";
|
||||||
version = "0.2.1";
|
version = "0.2.1.1";
|
||||||
sha256 = "0lvfvjs1q6hndbchij3zn1xi6vb1v53r379jvyc2m92sqqcfnylw";
|
sha256 = "0c95a1vjnnn3bwdz8v5hv7q2sbzn23ban3hcwqmwhmzc9ba019zg";
|
||||||
buildDepends = [ base case-insensitive text utf8-string ];
|
buildDepends = [ base case-insensitive text utf8-string ];
|
||||||
description = "The ToString class";
|
description = "The ToString class";
|
||||||
license = stdenv.lib.licenses.bsd3;
|
license = stdenv.lib.licenses.bsd3;
|
||||||
@ -116131,9 +116144,8 @@ self: {
|
|||||||
}:
|
}:
|
||||||
mkDerivation {
|
mkDerivation {
|
||||||
pname = "uri-encode";
|
pname = "uri-encode";
|
||||||
version = "1.5.0.3";
|
version = "1.5.0.4";
|
||||||
sha256 = "115wnc7x7gx57qza5az4c1wy0n2f40634529jk0vpxw6bb9b1mzn";
|
sha256 = "10pmg48h1az474qsr951inyvkm5y9xqwrdzyvxf83k53i07kijpp";
|
||||||
editedCabalFile = "455f71a45ce8ec3646f1215bf1476828fd01bb5fc1e228a6da6657c57b5f53be";
|
|
||||||
isLibrary = true;
|
isLibrary = true;
|
||||||
isExecutable = true;
|
isExecutable = true;
|
||||||
buildDepends = [ base bytestring network-uri text utf8-string ];
|
buildDepends = [ base bytestring network-uri text utf8-string ];
|
||||||
|
Loading…
x
Reference in New Issue
Block a user