9b0323859f
- cabal2nix: updated to version 1.31 - gloss: updated to version 1.7.2.1 - repa-algorithms: updated to version 3.1.0.1 - repa-bytestring: deleted obsolete package - repa-examples: updated to version 3.1.0.1 - repa-io: updated to version 3.1.0.1 - repa: updated to version 3.1.0.1 - semigroups: updated to version 0.8.0.1 svn path=/nixpkgs/trunk/; revision=33659
19 lines
611 B
Nix
19 lines
611 B
Nix
{ cabal, llvm, random, repa, repaAlgorithms, repaIo, vector }:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "repa-examples";
|
|
version = "3.1.0.1";
|
|
sha256 = "1zyhq7qd7j0a0rx7j395j6330kybfi0g3whsf25clrg4znd1iwjc";
|
|
isLibrary = false;
|
|
isExecutable = true;
|
|
buildDepends = [ random repa repaAlgorithms repaIo vector ];
|
|
extraLibraries = [ llvm ];
|
|
meta = {
|
|
homepage = "http://repa.ouroborus.net";
|
|
description = "Examples using the Repa array library";
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
platforms = self.ghc.meta.platforms;
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
|
};
|
|
})
|