3b2254a3af
There is no point in receiving hundreds of e-mails; I cannot read them anyway.
17 lines
517 B
Nix
17 lines
517 B
Nix
{ cabal, binary, bmp, repa, vector }:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "repa-io";
|
|
version = "3.2.3.2";
|
|
sha256 = "116qxq0jsq3hbj0hxjxfr9sl29vzj1rpfbzfxgc243v1hh4rdjfr";
|
|
buildDepends = [ binary bmp repa vector ];
|
|
jailbreak = true;
|
|
meta = {
|
|
homepage = "http://repa.ouroborus.net";
|
|
description = "Read and write Repa arrays in various formats";
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
platforms = self.ghc.meta.platforms;
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
|
};
|
|
})
|