ca93a87e0f
svn path=/nixpkgs/trunk/; revision=29090
19 lines
526 B
Nix
19 lines
526 B
Nix
{ cabal, repa, vector }:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "repa-algorithms";
|
|
version = "2.2.0.1";
|
|
sha256 = "1ggxa2h2swgf7621nrzlqmmyi3h2v526w69zcwvms84kyd257p4p";
|
|
buildDepends = [ repa vector ];
|
|
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
|
|
self.stdenv.lib.maintainers.simons
|
|
];
|
|
};
|
|
})
|