36d30b8279
- cereal: updated to version 0.3.5.2 - leksah-server: updated to version 0.12.1.1 - repa-algorithms: updated to version 3.2.1.1 - repa-examples: updated to version 3.2.1.1 - repa-io: updated to version 3.2.1.1 - repa: updated to version 3.2.1.1 - RepLib: updated to version 0.5.3 - unbound: updated to version 0.4.1 svn path=/nixpkgs/trunk/; revision=34366
16 lines
497 B
Nix
16 lines
497 B
Nix
{ cabal, binary, bmp, repa, vector }:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "repa-io";
|
|
version = "3.2.1.1";
|
|
sha256 = "156amnlqsxhwalnc4nypcd66znv2f8c71d5xi8ja5g8d9f1yg02g";
|
|
buildDepends = [ binary bmp repa vector ];
|
|
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 ];
|
|
};
|
|
})
|