summary refs log tree commit diff
path: root/pkgs/development/libraries/haskell/vector-algorithms/0.4.nix
blob: 8759d960342db210472971f26d0075415d133588 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{cabal, primitive, vector}:

cabal.mkDerivation (self : {
  pname = "vector-algorithms";
  version = "0.4";
  sha256 = "04ig2bx3gm42mwhcz5n8kp9sy33d1hrwm940kfxny74fc06422h8";
  propagatedBuildInputs = [primitive vector];
  meta = {
    description = "Efficient algorithms for vector arrays";
    license = "BSD";
    maintainers = [self.stdenv.lib.maintainers.andres];
  };
})