ce7f9e1d14
- crypto-api: updated to version 0.10.2 - hashtables: updated to version 1.0.1.6 - hjsmin: updated to version 0.1.1 - repa: updated to version 3.1.3.3 svn path=/nixpkgs/trunk/; revision=33940
16 lines
497 B
Nix
16 lines
497 B
Nix
{ cabal, QuickCheck, vector }:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "repa";
|
|
version = "3.1.3.3";
|
|
sha256 = "108zifbgngwd5a3bkvkm4sh2nhds748wqk227mcsxcw9y085da0f";
|
|
buildDepends = [ QuickCheck vector ];
|
|
meta = {
|
|
homepage = "http://repa.ouroborus.net";
|
|
description = "High performance, regular, shape polymorphic parallel arrays";
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
platforms = self.ghc.meta.platforms;
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
|
};
|
|
})
|