36d30b8279
- cereal: updated to version 0.3.5.2 - leksah-server: updated to version 0.12.1.1 - repa-algorithms: updated to version 3.2.1.1 - repa-examples: updated to version 3.2.1.1 - repa-io: updated to version 3.2.1.1 - repa: updated to version 3.2.1.1 - RepLib: updated to version 0.5.3 - unbound: updated to version 0.4.1 svn path=/nixpkgs/trunk/; revision=34366
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.2.1.1";
|
|
sha256 = "0nbdp3vwg7ha9vhz7f2kys3jxdlwiihxz031cfpkv2si5ci3gy1b";
|
|
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 ];
|
|
};
|
|
})
|