nixpkgs/pkgs/development/libraries/haskell/repa/default.nix
Peter Simons e51e662b4b haskell-repa: downgraded to 2.1.1.2
repa-examples doesn't compile with the latest version of repa.

svn path=/nixpkgs/trunk/; revision=28453
2011-08-10 08:26:15 +00:00

19 lines
549 B
Nix

{ cabal, QuickCheck, vector }:
cabal.mkDerivation (self: {
pname = "repa";
version = "2.1.1.2";
sha256 = "0lvhcq46abby69i6sgcqrxljykayp1sr3rmy2nlg5cccxlj94sqi";
buildDepends = [ QuickCheck vector ];
meta = {
homepage = "http://repa.ouroborus.net";
description = "High performance, regular, shape polymorphic parallel arrays.";
license = self.stdenv.lib.licenses.bsd3;
platforms = self.ghc.meta.platforms;
maintainers = [
self.stdenv.lib.maintainers.andres
self.stdenv.lib.maintainers.simons
];
};
})