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
17 lines
510 B
Nix
17 lines
510 B
Nix
{ cabal, llvm, repa, vector }:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "repa-algorithms";
|
|
version = "3.2.1.1";
|
|
sha256 = "19gc2vbkqxysnm0argksn8c3cv7vf30hkdycgv8fdfn0yc95xz0v";
|
|
buildDepends = [ repa vector ];
|
|
extraLibraries = [ llvm ];
|
|
meta = {
|
|
homepage = "http://repa.ouroborus.net";
|
|
description = "Algorithms using the Repa array library";
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
platforms = self.ghc.meta.platforms;
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
|
};
|
|
})
|