diff --git a/pkgs/development/haskell-modules/hackage-packages.nix b/pkgs/development/haskell-modules/hackage-packages.nix index 65e3a8d064f5..b5b2c3b20299 100644 --- a/pkgs/development/haskell-modules/hackage-packages.nix +++ b/pkgs/development/haskell-modules/hackage-packages.nix @@ -44747,13 +44747,19 @@ self: { }) {}; "exp-pairs" = callPackage - ({ mkDerivation, base, matrix, memoize, QuickCheck, smallcheck }: + ({ mkDerivation, base, ghc-prim, matrix, memoize, QuickCheck + , random, smallcheck, tasty, tasty-hunit, tasty-quickcheck + , tasty-smallcheck + }: mkDerivation { pname = "exp-pairs"; - version = "0.1.1.0"; - sha256 = "1n44vr6lan90z9vgcs25rgjkpz5b27sacr0g669igkb2c3prcbkf"; - buildDepends = [ base matrix memoize ]; - testDepends = [ base matrix memoize QuickCheck smallcheck ]; + version = "0.1.2.0"; + sha256 = "0iz22m8m4pk87xnpdgklw9d6ycf8s3sblyz8g78ykyvf0bf347zs"; + buildDepends = [ base ghc-prim memoize ]; + testDepends = [ + base matrix memoize QuickCheck random smallcheck tasty tasty-hunit + tasty-quickcheck tasty-smallcheck + ]; homepage = "https://github.com/Bodigrim/exp-pairs"; description = "Linear programming over exponent pairs"; license = stdenv.lib.licenses.gpl3; @@ -46834,12 +46840,12 @@ self: { }) {}; "fixed-vector" = callPackage - ({ mkDerivation, base, doctest, filemanip, primitive }: + ({ mkDerivation, base, deepseq, doctest, filemanip, primitive }: mkDerivation { pname = "fixed-vector"; - version = "0.7.0.3"; - sha256 = "119302bbv2v3k77kr158bp8sd6zhqzsyslcyq1vncng1ay0vzf8g"; - buildDepends = [ base primitive ]; + version = "0.8.0.0"; + sha256 = "1hlg0rbi2phk7qr7nvjnazg344jqp5p13c3m8v5n01vw9bvjbnir"; + buildDepends = [ base deepseq primitive ]; testDepends = [ base doctest filemanip primitive ]; description = "Generic vectors with statically known size"; license = stdenv.lib.licenses.bsd3; @@ -79299,6 +79305,21 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "llvm-ffi" = callPackage + ({ mkDerivation, base, llvm }: + mkDerivation { + pname = "llvm-ffi"; + version = "3.0.0"; + sha256 = "07hb4n7wk0gmprjps045cvhcyvmis0jp5f11jbk55y4mgn4jy0cv"; + isLibrary = true; + isExecutable = true; + buildDepends = [ base ]; + pkgconfigDepends = [ llvm ]; + homepage = "http://haskell.org/haskellwiki/LLVM"; + description = "FFI bindings to the LLVM compiler toolkit"; + license = stdenv.lib.licenses.bsd3; + }) { inherit (self.llvmPackages) llvm;}; + "llvm-general" = callPackage ({ mkDerivation, array, base, bytestring, containers, HUnit , llvm-config, llvm-general-pure, mtl, parsec, QuickCheck, setenv @@ -108110,8 +108131,8 @@ self: { }: mkDerivation { pname = "snap"; - version = "0.14.0.1"; - sha256 = "1mmc6ymd0bic7rw9vsrn1jwwjhlc5jqwh8z7zik5wsk75rvddgph"; + version = "0.14.0.2"; + sha256 = "1yv1snkibsqd7cdxyqi7c8gvnv1hzzhw5jlk19kps526n5xvay7r"; isLibrary = true; isExecutable = true; buildDepends = [ @@ -108122,7 +108143,6 @@ self: { stm syb template-haskell text time transformers unordered-containers vector vector-algorithms xmlhtml ]; - jailbreak = true; homepage = "http://snapframework.com/"; description = "Top-level package for the Snap Web Framework"; license = stdenv.lib.licenses.bsd3; @@ -119201,8 +119221,8 @@ self: { }: mkDerivation { pname = "turtle"; - version = "1.0.2"; - sha256 = "1qff8qd46583d8pyh9ac11r91cnzgncpjlnpdw5kg81xxldjv1n8"; + version = "1.1.0"; + sha256 = "0qpw366hyvprgcmxr83in2ay07f7br7bff2zqw9pnm7lkmkxrlkw"; buildDepends = [ async base clock directory foldl managed process system-fileio system-filepath temporary text time transformers unix @@ -128837,6 +128857,7 @@ self: { base deepseq fixed-vector ghc-prim missing-foreign primitive template-haskell ]; + jailbreak = true; description = "Yet another array library"; license = stdenv.lib.licenses.mit; }) {};