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