hackage-packages.nix: re-generate from Hackage 2015-03-14T14:55:25+0100

This commit is contained in:
Peter Simons 2015-03-14 14:55:25 +01:00
parent 519e1cefee
commit 9370137501

View File

@ -17211,8 +17211,8 @@ self: {
({ mkDerivation, base, c2hs, openal }: ({ mkDerivation, base, c2hs, openal }:
mkDerivation { mkDerivation {
pname = "al"; pname = "al";
version = "0.1.1.2"; version = "0.1.1.3";
sha256 = "0cb6vvjc23nb7qfdkyc7g197rgb7shjyxv6q5kd9jdxr3rl1apf4"; sha256 = "09ppkvzkka3c5hiawkz7lcrwp6sa8bhbg10m9hfp9rk4g9339czy";
buildDepends = [ base ]; buildDepends = [ base ];
buildTools = [ c2hs ]; buildTools = [ c2hs ];
extraLibraries = [ openal ]; extraLibraries = [ openal ];
@ -25338,18 +25338,12 @@ self: {
}) {}; }) {};
"boundingboxes" = callPackage "boundingboxes" = callPackage
({ mkDerivation, base, lens, linear, QuickCheck, random ({ mkDerivation, base, lens }:
, test-framework, test-framework-quickcheck2, test-framework-th
}:
mkDerivation { mkDerivation {
pname = "boundingboxes"; pname = "boundingboxes";
version = "0.2.2"; version = "0.2.3";
sha256 = "09yj85ikpdgzbibpdk0mw9vcaklmqlbhwpm6knz595596wr25fcx"; sha256 = "0r3mffqxqadn8qklq3kr0ggirkficfj8ic1fxgki2zrc5jm4f2g8";
buildDepends = [ base lens ]; buildDepends = [ base lens ];
testDepends = [
base lens linear QuickCheck random test-framework
test-framework-quickcheck2 test-framework-th
];
homepage = "https://github.com/fumieval/boundingboxes"; homepage = "https://github.com/fumieval/boundingboxes";
description = "A generic boundingbox for an arbitrary vector"; description = "A generic boundingbox for an arbitrary vector";
license = stdenv.lib.licenses.bsd3; license = stdenv.lib.licenses.bsd3;
@ -41861,14 +41855,14 @@ self: {
}) { eibclient = null;}; }) { eibclient = null;};
"eigen" = callPackage "eigen" = callPackage
({ mkDerivation, base, vector }: ({ mkDerivation, base, primitive, vector }:
mkDerivation { mkDerivation {
pname = "eigen"; pname = "eigen";
version = "1.0.0"; version = "1.1.2";
sha256 = "1957jq0fv3migj9807ifa0iws8x8ysxz0a6mhrvblvz0dl175vr6"; sha256 = "1ingg4mdhd9h25as5i4w16g2v47msy4r1f9winijsnw1043f8ayr";
buildDepends = [ base vector ]; buildDepends = [ base primitive vector ];
homepage = "https://github.com/osidorkin/haskell-eigen"; homepage = "https://github.com/osidorkin/haskell-eigen";
description = "Haskel binding for Eigen library"; description = "Eigen C++ library (linear algebra: matrices, vectors, numerical solvers)";
license = stdenv.lib.licenses.bsd3; license = stdenv.lib.licenses.bsd3;
}) {}; }) {};