1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

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 {
pname = "al";
version = "0.1.1.2";
sha256 = "0cb6vvjc23nb7qfdkyc7g197rgb7shjyxv6q5kd9jdxr3rl1apf4";
version = "0.1.1.3";
sha256 = "09ppkvzkka3c5hiawkz7lcrwp6sa8bhbg10m9hfp9rk4g9339czy";
buildDepends = [ base ];
buildTools = [ c2hs ];
extraLibraries = [ openal ];
@ -25338,18 +25338,12 @@ self: {
}) {};
"boundingboxes" = callPackage
({ mkDerivation, base, lens, linear, QuickCheck, random
, test-framework, test-framework-quickcheck2, test-framework-th
}:
({ mkDerivation, base, lens }:
mkDerivation {
pname = "boundingboxes";
version = "0.2.2";
sha256 = "09yj85ikpdgzbibpdk0mw9vcaklmqlbhwpm6knz595596wr25fcx";
version = "0.2.3";
sha256 = "0r3mffqxqadn8qklq3kr0ggirkficfj8ic1fxgki2zrc5jm4f2g8";
buildDepends = [ base lens ];
testDepends = [
base lens linear QuickCheck random test-framework
test-framework-quickcheck2 test-framework-th
];
homepage = "https://github.com/fumieval/boundingboxes";
description = "A generic boundingbox for an arbitrary vector";
license = stdenv.lib.licenses.bsd3;
@ -41861,14 +41855,14 @@ self: {
}) { eibclient = null;};
"eigen" = callPackage
({ mkDerivation, base, vector }:
({ mkDerivation, base, primitive, vector }:
mkDerivation {
pname = "eigen";
version = "1.0.0";
sha256 = "1957jq0fv3migj9807ifa0iws8x8ysxz0a6mhrvblvz0dl175vr6";
buildDepends = [ base vector ];
version = "1.1.2";
sha256 = "1ingg4mdhd9h25as5i4w16g2v47msy4r1f9winijsnw1043f8ayr";
buildDepends = [ base primitive vector ];
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;
}) {};