58f3a6e25e
- accelerate-cuda: updated to version 0.12.1.0 - accelerate-examples: updated to version 0.12.1.0 - accelerate-io: updated to version 0.12.1.0 - accelerate: updated to version 0.12.1.0 - hakyll: updated to version 3.3.0.1 - pandoc: updated to version 1.9.4.1 - Vec: updated to version 0.9.9 svn path=/nixpkgs/trunk/; revision=34431
29 lines
1 KiB
Nix
29 lines
1 KiB
Nix
{ cabal, accelerate, accelerateCuda, accelerateIo, attoparsec, bmp
|
|
, bytestringLexing, cmdargs, criterion, cuda, deepseq, fclabels
|
|
, filepath, gloss, hashtables, mtl, mwcRandom, pgm, QuickCheck
|
|
, random, testFramework, testFrameworkQuickcheck2, vector
|
|
, vectorAlgorithms
|
|
}:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "accelerate-examples";
|
|
version = "0.12.1.0";
|
|
sha256 = "0vlax90yy9h4ljm87ffmnqv881nr4ssbc968mbbwi2704hn4chhb";
|
|
isLibrary = false;
|
|
isExecutable = true;
|
|
buildDepends = [
|
|
accelerate accelerateCuda accelerateIo attoparsec bmp
|
|
bytestringLexing cmdargs criterion cuda deepseq fclabels filepath
|
|
gloss hashtables mtl mwcRandom pgm QuickCheck random testFramework
|
|
testFrameworkQuickcheck2 vector vectorAlgorithms
|
|
];
|
|
configureFlags = "-f-opencl";
|
|
meta = {
|
|
homepage = "http://www.cse.unsw.edu.au/~chak/project/accelerate/";
|
|
description = "Examples using the Accelerate library";
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
platforms = self.ghc.meta.platforms;
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
|
};
|
|
})
|