dhall-haskell/nix/vector-algorithms.nix
Gabriel Gonzalez dc5493d87f
Test build against ghc-8.6 (#669)
This ensures that all of the `dhall-*` libraries build against
GHC 8.6.1, but still generates tarballs using GHC 8.4.3 and
uses GHC 8.4.3 for development
2018-11-03 07:27:12 -07:00

17 lines
605 B
Nix

{ mkDerivation, base, bytestring, containers, mwc-random, primitive
, QuickCheck, stdenv, vector
}:
mkDerivation {
pname = "vector-algorithms";
version = "0.8.0.1";
sha256 = "15bcde786dcf03861946885e030d3dbe3b683e1a6fc12d7317e115084f4637fe";
libraryHaskellDepends = [ base bytestring primitive vector ];
testHaskellDepends = [
base bytestring containers QuickCheck vector
];
benchmarkHaskellDepends = [ base mwc-random vector ];
homepage = "https://github.com/erikd/vector-algorithms/";
description = "Efficient algorithms for vector arrays";
license = stdenv.lib.licenses.bsd3;
}