2012-04-07 04:59:28 -07:00
|
|
|
{ cabal, binary, bmp, repa, vector }:
|
2011-05-16 06:48:03 -07:00
|
|
|
|
2011-08-09 16:00:20 -07:00
|
|
|
cabal.mkDerivation (self: {
|
2011-05-16 06:48:03 -07:00
|
|
|
pname = "repa-io";
|
2012-06-06 01:08:25 -07:00
|
|
|
version = "3.2.1.1";
|
|
|
|
sha256 = "156amnlqsxhwalnc4nypcd66znv2f8c71d5xi8ja5g8d9f1yg02g";
|
2012-04-07 04:59:28 -07:00
|
|
|
buildDepends = [ binary bmp repa vector ];
|
2011-05-16 06:48:03 -07:00
|
|
|
meta = {
|
2011-08-06 13:59:04 -07:00
|
|
|
homepage = "http://repa.ouroborus.net";
|
2011-08-11 06:03:51 -07:00
|
|
|
description = "Read and write Repa arrays in various formats";
|
2011-08-06 13:59:04 -07:00
|
|
|
license = self.stdenv.lib.licenses.bsd3;
|
2011-08-09 16:00:20 -07:00
|
|
|
platforms = self.ghc.meta.platforms;
|
2012-03-24 03:21:28 -07:00
|
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
2011-05-16 06:48:03 -07:00
|
|
|
};
|
|
|
|
})
|