3b2254a3af
There is no point in receiving hundreds of e-mails; I cannot read them anyway.
16 lines
461 B
Nix
16 lines
461 B
Nix
{ cabal, deepseq, primitive }:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "vector";
|
|
version = "0.10.0.1";
|
|
sha256 = "1bq8am8qnpnsla315i21f1kikikalyz9ps1izxgpr9q1ic2lbsgc";
|
|
buildDepends = [ deepseq primitive ];
|
|
meta = {
|
|
homepage = "http://code.haskell.org/vector";
|
|
description = "Efficient Arrays";
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
platforms = self.ghc.meta.platforms;
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
|
};
|
|
})
|