2012-02-16 15:05:41 +01:00
|
|
|
{ cabal, binary, bmp, repa, repaBytestring, vector }:
|
2011-05-16 15:48:03 +02:00
|
|
|
|
2011-08-10 01:00:20 +02:00
|
|
|
cabal.mkDerivation (self: {
|
2011-05-16 15:48:03 +02:00
|
|
|
pname = "repa-io";
|
2011-09-07 19:29:54 +02:00
|
|
|
version = "2.2.0.1";
|
|
|
|
sha256 = "1akp6xkfvbc7jmnzlrz4y5fncqrv9d06y981dndcv6lgxz4hv4j1";
|
2012-02-16 15:05:41 +01:00
|
|
|
buildDepends = [ binary bmp repa repaBytestring vector ];
|
2011-05-16 15:48:03 +02:00
|
|
|
meta = {
|
2011-08-06 22:59:04 +02:00
|
|
|
homepage = "http://repa.ouroborus.net";
|
2011-08-11 15:03:51 +02:00
|
|
|
description = "Read and write Repa arrays in various formats";
|
2011-08-06 22:59:04 +02:00
|
|
|
license = self.stdenv.lib.licenses.bsd3;
|
2011-08-10 01:00:20 +02:00
|
|
|
platforms = self.ghc.meta.platforms;
|
|
|
|
maintainers = [
|
|
|
|
self.stdenv.lib.maintainers.andres
|
|
|
|
self.stdenv.lib.maintainers.simons
|
|
|
|
];
|
2011-05-16 15:48:03 +02:00
|
|
|
};
|
|
|
|
})
|