5bf6cf7fc5
The old 0.4 version is still required because snapServer won't accept the latest version. svn path=/nixpkgs/trunk/; revision=28254
15 lines
378 B
Nix
15 lines
378 B
Nix
{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];
|
|
};
|
|
})
|
|
|